Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion lib/measures/default_feature_reports/measure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -961,9 +961,28 @@ def run(runner, user_arguments)
'Emission Intensity Schedule Output',
'EV Charging Effective Schedule',
'EV Charging Original Schedule',
'EV Charging Original Load'
'EV Charging Original Load',
'PV Generation Schedule Output',
'Current Whole Building Demand Output',
'EV Charging Effective Load'
]

### add aumc special outputs
aumc_outputs_i = ['Cooling Setpoint Original Output',
'Heating Setpoint Original Output',
'Cooling Setpoint Controlled Output',
'Heating Setpoint Controlled Output']

aumc_outputs_f = []

aumc_outputs_i.each do |output|
10.times do |i|
output_f = "#{output}" + '_' + (i+1).to_s
aumc_outputs_f << output_f
end
end
requested_timeseries_names += aumc_outputs_f

# add thermal comfort timeseries
comfortTimeseries = ['Zone Thermal Comfort Fanger Model PMV', 'Zone Thermal Comfort Fanger Model PPD']
requested_timeseries_names += comfortTimeseries
Expand Down Expand Up @@ -1007,6 +1026,9 @@ def run(runner, user_arguments)
# this is recording the name of these final timeseries to write in the header of the CSV
final_timeseries_names = []




# loop over requested timeseries
requested_timeseries_names.each_index do |i|
timeseries_name = requested_timeseries_names[i]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,9 @@ Emission Intensity Schedule Output
EV Charging Effective Schedule
EV Charging Original Schedule
EV Charging Original Load
PV Generation Schedule Output
Current Whole Building Demand Output
Cooling Setpoint Original Output
Heating Setpoint Original Output
Cooling Setpoint Controlled Output
Heating Setpoint Controlled Output