View EMS output variable in Openstudio
Hi ,
is it possible to view my custom EMS output variable in Report: Openstudio Results section ?
here is what I'm using in the measure to ouput the variable
eout_average_core_temp = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, average_core_temp)
eout_average_core_temp.setName('Average Core Temperature')
v = OpenStudio::Model::OutputVariable.new(eout_average_core_temp.name.to_s, model)
v.setName("Average Core Temperature [C]")
v.setVariableName('Average Core Temperature')
v.setReportingFrequency(report_freq)
I can't see the timeseries variable in Openstudio or the eso file in the run folder. what am I missing?
add a comment