Hi all,
I was running successfully Jeplis+EA project with rvi-files. However, I wanted to get uservars defined and plotted. So I am trying to use the RVX files. But it gives me some strange error although rvi has defined the objective function:
my rvi file:
eplusout.eso
eplusout.csv
Electricity:HVAC
Heating:Electricity
Cooling:Electricity
Zone Ventilation Total Heat Loss Energy
Zone Ventilation Total Heat Gain Energy
Zone Infiltration Total Heat Loss Energy
Zone Infiltration Total Heat Gain Energy]
Zone Windows Total Heat Gain Energy
Zone Windows Total Heat Loss Energy
0
!-objectives
Heating Electriciy;kWh,c1
Cooling Electriciy;kWh,c2
!-end objectives
my rvx file:
{
"notes" : "Some notes about this RVX",
"rvis" : [
{
"fileName" : "my_LCCA.rvi",
"tableName" : "SimResults"
}
],
"sqls" : [
{
"tableName" : "Heating_Electricity",
"columnHeaders" : "Heating Electricity [kWh]",
"sqlcommand" : "SELECT Value FROM TabularDataWithStrings WHERE (TableName='End Uses' AND RowName='Heating' AND ColumnName='Electricity')"
},
{
"tableName" : "Cooling_Electricity",
"columnHeaders" : "Cooling Electricity [kWh]",
"sqlcommand" : "SELECT Value FROM TabularDataWithStrings WHERE (TableName='End Uses' AND RowName='Cooling' AND ColumnName='Electricity')"
}
{
"tableName" : "HVAC_Electricity_Intensity",
"columnHeaders" : "HVAC Electricity Intensity [kWh/m2]",
"sqlcommand" : "SELECT Value FROM TabularDataWithStrings WHERE (TableName='Utility Use Per Conditioned Floor Area' AND RowName='HVAC' AND ColumnName='Electricity Intensity')"
}
],
"scripts" : [
{
}
],
"userVars" : [
{
"identifier" : "v0",
"formula" : "c0",
"caption" : "Variable 0 []",
"report" : true
},
{
"identifier" : "v1",
"formula" : "c1",
"caption" : "Variable 9 []",
"report" : false
},
{
"identifier" : "v2",
"formula" : "c10",
"caption" : "Variable 10 []",
"report" : true
}
{
"identifier" : "v3",
"formula" : "c2",
"caption" : "Variable 11 []",
"report" : false
}
],
"constraints" : [
{
}
],
"objectives" : [
{
"identifier" : "t1",
"formula" : "v1",
"caption" : "Heating Electricity [kWh]",
"scaling" : true,
"min" : 0,
"max" : 10000,
"weight" : 1.0
},
{
"identifier" : "t2",
"formula" : "v2",
"caption" : "Cooling Electricity [kWh]",
"scaling" : false,
"min" : 0,
"max" : 10000,
"weight" : 1.0
}
]
}