1

How to mix a *.rvi file with a *rvx file?

Hi! Everytime I want to do a simulation in jeplus I have to run a simulation with a *.rvi file and then I have to run another simulation with a *.rvx file just to obtain one tabular value from the eplustbl.csv. My *.rvi file is: image description

and my *.rvx file is:

image description

Is there a way so I can obtain all this output results in the same output file (AllCombinedResults.csv) by mixing the presented *.rvi with the *.rvx file? If I could have, at least, the Total Electric power of the building or the hvac electric demand power information together with the Total Energy Cost, in the same "AllCombinedResults.csv", it is really helpful. Thank you

Wilson's avatar
543
Wilson
asked 2016-06-02 11:41:05 -0500, updated 2016-06-02 13:22:23 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

2

Hi Wilson,

Yes, of course. You just need to add a RVI section in the RVX file to reference to RVI file you want to use, like here:

{
    "rvis" : [ 
        { 
            "fileName" : "your.rvi",
            "tableName" : "ElecDemand",
            "frequency" : "Annual",
            "usedInCalc" : true
        }
    ],
    "csvs" : [
        {...
        }
    ]
}

Full details on how to use the RVX file is here: http://www.jeplus.org/wiki/doku.php?i...

Cheers,

Yi

Yi Zhang's avatar
1.2k
Yi Zhang
answered 2016-06-04 03:54:38 -0500
edit flag offensive 0 remove flag delete link

Comments

Thank you Yi Zhang! Problem solved!

Cheers,

Wilson

Wilson's avatar Wilson (2016-06-04 08:50:38 -0500) edit
add a comment see more comments