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 with output data - 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 with output data (/showthread.php?tid=402)



Problem with output data - Junghun Lee - 10-15-2015

Hi.

I’m a new user of jEPlus. To practice the jEplus, I select the EnergyPlus example file, 5ZoneAirCooled.idf file and set the output variable ‘Zone Air System Sensible Cooling Rate’ in rvi format. The parameter search tag is @@people@@ and the range of variations are {1,5}.

However I am not able to get SimResults, but RunTimes and SimJobIndex files are fine.
Furthermore, the example projects in jeplus.org, UK Office Building Archetypal Models v8.1, also can not get the output data.

I’m attaching idf and rvi files that I calculated.

regards,
Lee


RE: Problem with output data - Yi - 10-15-2015

Hi Lee,

From v1.6 jEPlus collects rvi results with user-defined frequency, which is "annual" by default. Since the IDF model only produce "Timestep" output, jEPlus cannot get any annual data, therefore the SimResults.csv is empty. There are two ways to handle this issue: (1) change the reporting frequency of "Output:Variable,*,Zone Air System Sensible Cooling Rate" to "annual" in the IDF file; or (2) use the new RVX file to define RVI extraction and explicitly specify frequency to "Timestep". Below is an example RVX to use with your aaa.rvi. Copy and paste this to a file (e.g. my.rvx) and assign it to your project, jEPlus will then get your output data.

{

"notes" : "Some notes about this RVX",

"rvis" : [
{
"fileName" : "aaa.rvi",
"tableName" : "SimResults",
"frequency" : "TimeStep",
"usedInCalc" : true
}
],

"sqls" : [
],

"csvs" : [
],

"scripts" : [
],

"userVars" : [
],

"constraints" : [
],

"objectives" : [
]
}

Regards,

Yi


RE: Problem with output data - Junghun Lee - 10-16-2015

Hi Yi,

Thanks for your quick response.
It is working!! and really helpful to me.
Thank you so much!

regards,
Lee