The following warnings occurred:
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.0.30 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.0.30 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $awaitingusers - Line: 36 - File: global.php(844) : eval()'d code PHP 8.0.30 (Linux)
File Line Function
/global.php(844) : eval()'d code 36 errorHandler->error
/global.php 844 eval
/printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 909 - File: global.php PHP 8.0.30 (Linux)
File Line Function
/global.php 909 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5132 - File: inc/functions.php PHP 8.0.30 (Linux)
File Line Function
/inc/functions.php 5132 errorHandler->error
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "additionalgroups" - Line: 7288 - File: inc/functions.php PHP 8.0.30 (Linux)
File Line Function
/inc/functions.php 7288 errorHandler->error
/inc/functions.php 5152 is_member
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "additionalgroups" - Line: 7288 - File: inc/functions.php PHP 8.0.30 (Linux)
File Line Function
/inc/functions.php 7288 errorHandler->error
/inc/functions.php 5152 is_member
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.0.30 (Linux)
File Line Function
/printthread.php 165 errorHandler->error



jeplus.org forums
Problem in extracting results from .e+ table .csv - Printable Version

+- jeplus.org forums (http://jeplus.org/mybb)
+-- Forum: Building simulation tools (http://jeplus.org/mybb/forumdisplay.php?fid=1)
+--- Forum: jEPlus (http://jeplus.org/mybb/forumdisplay.php?fid=2)
+--- Thread: Problem in extracting results from .e+ table .csv (/showthread.php?tid=405)



Problem in extracting results from .e+ table .csv - Marcrow - 12-26-2015

Dear all,

I'm a new user of jeplus for E+ parametric analysis. I'm trying to obtain the energy consuption of a building for various orientations.
According the user guide I'm trying to extract the value of Energy Per Conditioned Building Area [MJ/m2] from the Annual Building Utility Performance Summary - Site and Source Energy table generated by E+ in the output file eplustbl.csv.

Even if the parametric simulation are correctly performed and html/tabular csv results are generated for each run, I can't understand why results are not extracted from the tables and they are not collected in the SimResults.csv file.

At the moment I'm using the following .rvi file. The version of my idf file is 8.1.009.


"csvs" : [
   {
       "sourceCsv"  : "eplustbl.csv",
       "fromReport" : "Annual Building Utility Performance Summary",
       "fromTable"  : "Site and Source Energy",
       "fromColumn" : "Energy Per Conditioned Building Area [MJ/m2]",
       "fromRow"    : "Total Source Energy",
       "tableName"  : "TABLENAME",
       "columnHeaders" : "COLUMNTITLE",
       "usedInCalc" : true
   }
],

I upload my files.
Thanks for your help.

Marcrow


RE: Problem in extracting results from .e+ table .csv - Yi - 01-01-2016

Hi Marcrow,

You need to make two changes:
1. Add a pair of { } to enclose the "csvs" block and remove the last ','
2. Rename my.rvi to my.rvx

The content of my.rvx should be like this:

{
"csvs" : [
{
"sourceCsv" : "eplustbl.csv",
"fromReport" : "Annual Building Utility Performance Summary",
"fromTable" : "Site and Source Energy",
"fromColumn" : "Energy Per Conditioned Building Area [MJ/m2]",
"fromRow" : "Total Source Energy",
"tableName" : "TABLENAME",
"columnHeaders" : "COLUMNTITLE",
"usedInCalc" : true
}
]
}

For optimisation, you can add constraints and objectives later to the rvx file.

Yi


RE: Problem in extracting results from .e+ table .csv - Marcrow - 01-03-2016

Thank you very much for you help Yi!

All the best,
Marco