The following warnings occurred: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.0.30 (Linux)
|
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 |