2

I want to get [eplusout.csv] file in jEPlus

I tried to do some sensitivity analysis and calibration through jEPlus.

I thought it's going well.. because I validate project and start simulation.

However, I couldn't see the result file.

I have three input files IDF, epw, rvi

My rvi file is:

eplusout.eso
eplusout.csv
Electricity:HVAC
0

to see csv file, which I think is quite good.. isn't it?

Do I have to change something in the IDF file? This is a part of my IDF file (the bottom line in IDF file).

!-   ===========  ALL OBJECTS IN CLASS: OUTPUT:METER ===========

Output:Meter,
    Electricity:HVAC,        !- Name
    Hourly;                  !- Reporting Frequency


!-   ===========  ALL OBJECTS IN CLASS: OUTPUT:SQLITE ===========

Output:SQLite,
    SimpleAndTabular;        !- Option Type


!-   ===========  ALL OBJECTS IN CLASS: OUTPUT:DIAGNOSTICS ===========

Output:Diagnostics,
    DisplayAdvancedReportVariables;  !- Key 1
FAITH's avatar
21
FAITH
asked 2015-07-17 03:21:42 -0500
__AmirRoth__'s avatar
4.4k
__AmirRoth__
updated 2015-11-08 10:41:33 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

2

If you only need Electricity:HVAC, you can put it in the meter file with this line:

Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod;

In the RVI file, make sure each parts are on separate lines, like this:

eplusout.mtr 
eplusout.csv 
Electricity:HVAC 
0

Output:SQLite and Output:Diagnostics may not be necessary in the parametric run.

Yi Zhang's avatar
1.2k
Yi Zhang
answered 2015-07-18 05:47:54 -0500
edit flag offensive 0 remove flag delete link

Comments

Thanks for answering

It's really honor to meet you in here!

You mean just replace Output: Meter with Output:Meter:MeterFileOnly, Electricity: HVAC, runperiod ;

!- =========== ALL OBJECTS IN CLASS: OUTPUT:METER ===========

Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod; Electricity:HVAC, !- Name Hourly; !- Reporting Frequency

!- =========== ALL OBJECTS IN CLASS: OUTPUT:DIAGNOSTICS ===========

Output:Diagnostics, DisplayAdvancedReportVariables; !- Key 1

I tried but it didn't work.

Is there any other way to solve this matter??

Thank yo

FAITH's avatar FAITH (2015-07-19 21:58:58 -0500) edit

Replace the line under "===ALL OBJECT IN CLASS: OUTPUT:METER===" with the line I've given, and also change the first line of the RVI from eplusout.eso to eplusout.mtr...

Yi Zhang's avatar Yi Zhang (2015-07-20 04:43:35 -0500) edit
add a comment see more comments