Class: AdjustThermostatSetpointsByDegreesForPeakHours
- Inherits:
-
OpenStudio::Measure::ModelMeasure
- Object
- OpenStudio::Measure::ModelMeasure
- AdjustThermostatSetpointsByDegreesForPeakHours
- Defined in:
- lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb
Constant Summary collapse
- TEMP_IP_UNIT =
setup OpenStudio units that we will need
OpenStudio.createUnit('F').get
- TEMP_SI_UNIT =
OpenStudio.createUnit('C').get
Instance Method Summary collapse
-
#arguments(model) ⇒ Object
define the arguments that the user will input.
- #check_date_ranges_overlap(rule, adjust_start_date, adjust_end_date) ⇒ Object
- #checkDaysCovered(sch_rule, sch_day_covered) ⇒ Object
- #clone_rule_with_new_dayschedule(original_rule, new_rule_name) ⇒ Object
- #coverMissingDays(sch_rule, sch_day_covered) ⇒ Object
-
#description ⇒ Object
human readable description.
-
#modeler_description ⇒ Object
human readable description of modeling approach.
- #modify_default_day_for_date_period(schedule_set, default_day, days_covered, os_start_date, os_end_date, shift_time_start, shift_time_end, adjustment) ⇒ Object
- #modify_rule_for_date_period(original_rule, os_start_date, os_end_date, shift_time_start, shift_time_end, adjustment) ⇒ Object
- #modify_rule_for_specific_dates(original_rule, os_start_date, os_end_date, shift_time_start, shift_time_end, adjustment, applied_dates) ⇒ Object
-
#name ⇒ Object
define the name that a user will see.
-
#run(model, runner, user_arguments) ⇒ Object
define what happens when the measure is run.
- #updateDaySchedule(sch_day, vec_time, vec_value, time_begin, time_end, adjustment) ⇒ Object
-
#updateDaySchedule_old(sch_day, vec_time, vec_value, time_begin, time_end, adjustment) ⇒ Object
TODO check if this function works.
- #validate_date_format(start_date1, end_date1, runner, model) ⇒ Object
- #validate_time_format(star_time, end_time, runner) ⇒ Object
Instance Method Details
#arguments(model) ⇒ Object
define the arguments that the user will input
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 29 def arguments(model) args = OpenStudio::Measure::OSArgumentVector.new # make an argument for adjustment to heating setpoint heating_adjustment = OpenStudio::Measure::OSArgument.makeDoubleArgument('heating_adjustment', true) heating_adjustment.setDisplayName('Degrees Fahrenheit to Adjust heating Setpoint By') heating_adjustment.setDefaultValue(-2.0) args << heating_adjustment heating_start_date1 = OpenStudio::Ruleset::OSArgument.makeStringArgument('heating_start_date1', true) heating_start_date1.setDisplayName('First start date for heating setpoint adjustment') heating_start_date1.setDescription('In MM-DD format') heating_start_date1.setDefaultValue('01-01') args << heating_start_date1 heating_end_date1 = OpenStudio::Ruleset::OSArgument.makeStringArgument('heating_end_date1', true) heating_end_date1.setDisplayName('First end date for heating setpoint adjustment') heating_end_date1.setDescription('In MM-DD format') heating_end_date1.setDefaultValue('03-31') args << heating_end_date1 heating_start_date2 = OpenStudio::Ruleset::OSArgument.makeStringArgument('heating_start_date2', false) heating_start_date2.setDisplayName('Second start date for heating setpoint adjustment (optional)') heating_start_date2.setDescription('Specify a date in MM-DD format if you want a second season of heating setpoint adjustment; leave blank if not needed.') heating_start_date2.setDefaultValue('') args << heating_start_date2 heating_end_date2 = OpenStudio::Ruleset::OSArgument.makeStringArgument('heating_end_date2', false) heating_end_date2.setDisplayName('Second end date for heating setpoint adjustment') heating_end_date2.setDescription('Specify a date in MM-DD format if you want a second season of heating setpoint adjustment; leave blank if not needed. If either the start or end date is blank, the period is considered not used.') heating_end_date2.setDefaultValue('') args << heating_end_date2 heating_start_date3 = OpenStudio::Ruleset::OSArgument.makeStringArgument('heating_start_date3', false) heating_start_date3.setDisplayName('Third start date for heating setpoint adjustment (optional)') heating_start_date3.setDescription('Specify a date in MM-DD format if you want a third season of heating setpoint adjustment; leave blank if not needed.') heating_start_date3.setDefaultValue('') args << heating_start_date3 heating_end_date3 = OpenStudio::Ruleset::OSArgument.makeStringArgument('heating_end_date3', false) heating_end_date3.setDisplayName('Third end date for heating setpoint adjustment') heating_end_date3.setDescription('Specify a date in MM-DD format if you want a third season of heating setpoint adjustment; leave blank if not needed. If either the start or end date is blank, the period is considered not used.') heating_end_date3.setDefaultValue('') args << heating_end_date3 heating_start_date4 = OpenStudio::Ruleset::OSArgument.makeStringArgument('heating_start_date4', false) heating_start_date4.setDisplayName('Fourth start date for heating setpoint adjustment (optional)') heating_start_date4.setDescription('Specify a date in MM-DD format if you want a fourth season of heating setpoint adjustment; leave blank if not needed.') heating_start_date4.setDefaultValue('') args << heating_start_date4 heating_end_date4 = OpenStudio::Ruleset::OSArgument.makeStringArgument('heating_end_date4', false) heating_end_date4.setDisplayName('Fourth end date for heating setpoint adjustment') heating_end_date4.setDescription('Specify a date in MM-DD format if you want a fourth season of heating setpoint adjustment; leave blank if not needed. If either the start or end date is blank, the period is considered not used.') heating_end_date4.setDefaultValue('') args << heating_end_date4 heating_start_date5 = OpenStudio::Ruleset::OSArgument.makeStringArgument('heating_start_date5', false) heating_start_date5.setDisplayName('Fifth start date for heating setpoint adjustment (optional)') heating_start_date5.setDescription('Specify a date in MM-DD format if you want a fifth season of heating setpoint adjustment; leave blank if not needed.') heating_start_date5.setDefaultValue('') args << heating_start_date5 heating_end_date5 = OpenStudio::Ruleset::OSArgument.makeStringArgument('heating_end_date5', false) heating_end_date5.setDisplayName('Fifth end date for heating setpoint adjustment') heating_end_date5.setDescription('Specify a date in MM-DD format if you want a fifth season of heating setpoint adjustment; leave blank if not needed. If either the start or end date is blank, the period is considered not used.') heating_end_date5.setDefaultValue('') args << heating_end_date5 heating_start_time1 = OpenStudio::Measure::OSArgument.makeStringArgument('heating_start_time1', true) heating_start_time1.setDisplayName('Start time of heating setpoint adjustment for the first season') heating_start_time1.setDescription('In HH:MM:SS format') heating_start_time1.setDefaultValue('17:00:00') args << heating_start_time1 heating_end_time1 = OpenStudio::Measure::OSArgument.makeStringArgument('heating_end_time1', true) heating_end_time1.setDisplayName('End time of heating setpoint adjustment for the first season') heating_end_time1.setDescription('In HH:MM:SS format') heating_end_time1.setDefaultValue('21:00:00') args << heating_end_time1 heating_start_time2 = OpenStudio::Measure::OSArgument.makeStringArgument('heating_start_time2', false) heating_start_time2.setDisplayName('Start time of heating setpoint adjustment for the second season (optional)') heating_start_time2.setDescription('In HH:MM:SS format') heating_start_time2.setDefaultValue('') args << heating_start_time2 heating_end_time2 = OpenStudio::Measure::OSArgument.makeStringArgument('heating_end_time2', false) heating_end_time2.setDisplayName('End time of heating setpoint adjustment for the second season (optional)') heating_end_time2.setDescription('In HH:MM:SS format') heating_end_time2.setDefaultValue('') args << heating_end_time2 heating_start_time3 = OpenStudio::Measure::OSArgument.makeStringArgument('heating_start_time3', false) heating_start_time3.setDisplayName('Start time of heating setpoint adjustment for the third season (optional)') heating_start_time3.setDescription('In HH:MM:SS format') heating_start_time3.setDefaultValue('') args << heating_start_time3 heating_end_time3 = OpenStudio::Measure::OSArgument.makeStringArgument('heating_end_time3', false) heating_end_time3.setDisplayName('End time of heating setpoint adjustment for the third season (optional)') heating_end_time3.setDescription('In HH:MM:SS format') heating_end_time3.setDefaultValue('') args << heating_end_time3 heating_start_time4 = OpenStudio::Measure::OSArgument.makeStringArgument('heating_start_time4', false) heating_start_time4.setDisplayName('Start time of heating setpoint adjustment for the fourth season (optional)') heating_start_time4.setDescription('In HH:MM:SS format') heating_start_time4.setDefaultValue('') args << heating_start_time4 heating_end_time4 = OpenStudio::Measure::OSArgument.makeStringArgument('heating_end_time4', false) heating_end_time4.setDisplayName('End time of heating setpoint adjustment for the fourth season (optional)') heating_end_time4.setDescription('In HH:MM:SS format') heating_end_time4.setDefaultValue('') args << heating_end_time4 heating_start_time5 = OpenStudio::Measure::OSArgument.makeStringArgument('heating_start_time5', false) heating_start_time5.setDisplayName('Start time of heating setpoint adjustment for the fifth season (optional)') heating_start_time5.setDescription('In HH:MM:SS format') heating_start_time5.setDefaultValue('') args << heating_start_time5 heating_end_time5 = OpenStudio::Measure::OSArgument.makeStringArgument('heating_end_time5', false) heating_end_time5.setDisplayName('End time of heating setpoint adjustment for the fifth season (optional)') heating_end_time5.setDescription('In HH:MM:SS format') heating_end_time5.setDefaultValue('') args << heating_end_time5 # make an argument for adjustment to cooling setpoint cooling_adjustment = OpenStudio::Measure::OSArgument.makeDoubleArgument('cooling_adjustment', true) cooling_adjustment.setDisplayName('Degrees Fahrenheit to Adjust Cooling Setpoint By') cooling_adjustment.setDefaultValue(5.0) args << cooling_adjustment cooling_start_date1 = OpenStudio::Ruleset::OSArgument.makeStringArgument('cooling_start_date1', true) cooling_start_date1.setDisplayName('First start date for cooling setpoint adjustment') cooling_start_date1.setDescription('In MM-DD format') cooling_start_date1.setDefaultValue('06-01') args << cooling_start_date1 cooling_end_date1 = OpenStudio::Ruleset::OSArgument.makeStringArgument('cooling_end_date1', true) cooling_end_date1.setDisplayName('First end date for cooling setpoint adjustment') cooling_end_date1.setDescription('In MM-DD format') cooling_end_date1.setDefaultValue('09-30') args << cooling_end_date1 cooling_start_date2 = OpenStudio::Ruleset::OSArgument.makeStringArgument('cooling_start_date2', false) cooling_start_date2.setDisplayName('Second start date for cooling setpoint adjustment (optional)') cooling_start_date2.setDescription('Specify a date in MM-DD format if you want a second season of cooling setpoint adjustment; leave blank if not needed.') cooling_start_date2.setDefaultValue('') args << cooling_start_date2 cooling_end_date2 = OpenStudio::Ruleset::OSArgument.makeStringArgument('cooling_end_date2', false) cooling_end_date2.setDisplayName('Second end date for cooling setpoint adjustment') cooling_end_date2.setDescription('Specify a date in MM-DD format if you want a second season of cooling setpoint adjustment; leave blank if not needed. If either the start or end date is blank, the period is considered not used.') cooling_end_date2.setDefaultValue('') args << cooling_end_date2 cooling_start_date3 = OpenStudio::Ruleset::OSArgument.makeStringArgument('cooling_start_date3', false) cooling_start_date3.setDisplayName('Third start date for cooling setpoint adjustment (optional)') cooling_start_date3.setDescription('Specify a date in MM-DD format if you want a third season of cooling setpoint adjustment; leave blank if not needed.') cooling_start_date3.setDefaultValue('') args << cooling_start_date3 cooling_end_date3 = OpenStudio::Ruleset::OSArgument.makeStringArgument('cooling_end_date3', false) cooling_end_date3.setDisplayName('Third end date for cooling setpoint adjustment') cooling_end_date3.setDescription('Specify a date in MM-DD format if you want a third season of cooling setpoint adjustment; leave blank if not needed. If either the start or end date is blank, the period is considered not used.') cooling_end_date3.setDefaultValue('') args << cooling_end_date3 cooling_start_date4 = OpenStudio::Ruleset::OSArgument.makeStringArgument('cooling_start_date4', false) cooling_start_date4.setDisplayName('Fourth start date for cooling setpoint adjustment (optional)') cooling_start_date4.setDescription('Specify a date in MM-DD format if you want a fourth season of cooling setpoint adjustment; leave blank if not needed.') cooling_start_date4.setDefaultValue('') args << cooling_start_date4 cooling_end_date4 = OpenStudio::Ruleset::OSArgument.makeStringArgument('cooling_end_date4', false) cooling_end_date4.setDisplayName('Fourth end date for cooling setpoint adjustment') cooling_end_date4.setDescription('Specify a date in MM-DD format if you want a fourth season of cooling setpoint adjustment; leave blank if not needed. If either the start or end date is blank, the period is considered not used.') cooling_end_date4.setDefaultValue('') args << cooling_end_date4 cooling_start_date5 = OpenStudio::Ruleset::OSArgument.makeStringArgument('cooling_start_date5', false) cooling_start_date5.setDisplayName('Fifth start date for cooling setpoint adjustment (optional)') cooling_start_date5.setDescription('Specify a date in MM-DD format if you want a fifth season of cooling setpoint adjustment; leave blank if not needed.') cooling_start_date5.setDefaultValue('') args << cooling_start_date5 cooling_end_date5 = OpenStudio::Ruleset::OSArgument.makeStringArgument('cooling_end_date5', false) cooling_end_date5.setDisplayName('Fifth end date for cooling setpoint adjustment') cooling_end_date5.setDescription('Specify a date in MM-DD format if you want a fifth season of cooling setpoint adjustment; leave blank if not needed. If either the start or end date is blank, the period is considered not used.') cooling_end_date5.setDefaultValue('') args << cooling_end_date5 cooling_start_time1 = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_start_time1', true) cooling_start_time1.setDisplayName('Start time of cooling setpoint adjustment for the first season') cooling_start_time1.setDescription('In HH:MM:SS format') cooling_start_time1.setDefaultValue('17:00:00') args << cooling_start_time1 cooling_end_time1 = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_end_time1', true) cooling_end_time1.setDisplayName('End time of cooling setpoint adjustment for the first season') cooling_end_time1.setDescription('In HH:MM:SS format') cooling_end_time1.setDefaultValue('21:00:00') args << cooling_end_time1 cooling_start_time2 = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_start_time2', false) cooling_start_time2.setDisplayName('Start time of cooling setpoint adjustment for the second season (optional)') cooling_start_time2.setDescription('In HH:MM:SS format') cooling_start_time2.setDefaultValue('') args << cooling_start_time2 cooling_end_time2 = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_end_time2', false) cooling_end_time2.setDisplayName('End time of cooling setpoint adjustment for the second season (optional)') cooling_end_time2.setDescription('In HH:MM:SS format') cooling_end_time2.setDefaultValue('') args << cooling_end_time2 cooling_start_time3 = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_start_time3', false) cooling_start_time3.setDisplayName('Start time of cooling setpoint adjustment for the third season (optional)') cooling_start_time3.setDescription('In HH:MM:SS format') cooling_start_time3.setDefaultValue('') args << cooling_start_time3 cooling_end_time3 = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_end_time3', false) cooling_end_time3.setDisplayName('End time of cooling setpoint adjustment for the third season (optional)') cooling_end_time3.setDescription('In HH:MM:SS format') cooling_end_time3.setDefaultValue('') args << cooling_end_time3 cooling_start_time4 = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_start_time4', false) cooling_start_time4.setDisplayName('Start time of cooling setpoint adjustment for the fourth season (optional)') cooling_start_time4.setDescription('In HH:MM:SS format') cooling_start_time4.setDefaultValue('') args << cooling_start_time4 cooling_end_time4 = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_end_time4', false) cooling_end_time4.setDisplayName('End time of cooling setpoint adjustment for the fourth season (optional)') cooling_end_time4.setDescription('In HH:MM:SS format') cooling_end_time4.setDefaultValue('') args << cooling_end_time4 cooling_start_time5 = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_start_time5', false) cooling_start_time5.setDisplayName('Start time of cooling setpoint adjustment for the fifth season (optional)') cooling_start_time5.setDescription('In HH:MM:SS format') cooling_start_time5.setDefaultValue('') args << cooling_start_time5 cooling_end_time5 = OpenStudio::Measure::OSArgument.makeStringArgument('cooling_end_time5', false) cooling_end_time5.setDisplayName('End time of cooling setpoint adjustment for the fifth season (optional)') cooling_end_time5.setDescription('In HH:MM:SS format') cooling_end_time5.setDefaultValue('') args << cooling_end_time5 # Use alternative default start and end time for different climate zone alt_periods = OpenStudio::Measure::OSArgument.makeBoolArgument('alt_periods', true) alt_periods.setDisplayName('Use alternative default start and end time based on the state of the model from the Cambium load profile peak period?') alt_periods.setDescription('This will overwrite the start and end time and date provided by the user') alt_periods.setDefaultValue(false) args << alt_periods return args end |
#check_date_ranges_overlap(rule, adjust_start_date, adjust_end_date) ⇒ Object
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 1022 def check_date_ranges_overlap(rule, adjust_start_date, adjust_end_date) ## check if the original rule applied DateRange overlaps with the adjustment date period overlapped = false new_start_dates = [] new_end_dates = [] if rule.endDate.get >= rule.startDate.get and rule.startDate.get <= adjust_end_date and rule.endDate.get >= adjust_start_date overlapped = true new_start_dates << [adjust_start_date, rule.startDate.get].max new_end_dates << [adjust_end_date, rule.endDate.get].min elsif rule.endDate.get < rule.startDate.get ## If the DateRange has a endDate < startDate, the range wraps around the year. if rule.endDate.get >= adjust_start_date overlapped = true new_start_dates << adjust_start_date new_end_dates << rule.endDate.get end if rule.startDate.get <= adjust_end_date overlapped = true new_start_dates << rule.startDate.get new_end_dates << adjust_end_date end end return overlapped, new_start_dates, new_end_dates end |
#checkDaysCovered(sch_rule, sch_day_covered) ⇒ Object
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 1127 def checkDaysCovered(sch_rule, sch_day_covered) if sch_rule.applySunday sch_day_covered[0] = true end if sch_rule.applyMonday sch_day_covered[1] = true end if sch_rule.applyTuesday sch_day_covered[2] = true end if sch_rule.applyWednesday sch_day_covered[3] = true end if sch_rule.applyThursday sch_day_covered[4] = true end if sch_rule.applyFriday sch_day_covered[5] = true end if sch_rule.applySaturday sch_day_covered[6] = true end end |
#clone_rule_with_new_dayschedule(original_rule, new_rule_name) ⇒ Object
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 1047 def clone_rule_with_new_dayschedule(original_rule, new_rule_name) ## Cloning a scheduleRule will automatically clone the daySchedule associated with it, but it's a shallow copy, ## because the daySchedule is a resource that can be used by many scheduleRule ## Therefore, once the daySchedule is modified for the cloned scheduleRule, the original daySchedule is also changed ## Also, there's no function to assign a new daySchedule to the existing scheduleRule, ## so the only way to clone the scheduleRule but change the daySchedule is to construct a new scheduleRule with a daySchedule passed in ## and copy all other settings from the original scheduleRule rule_period = OpenStudio::Model::ScheduleRule.new(original_rule.scheduleRuleset, original_rule.daySchedule) rule_period.setName(new_rule_name) rule_period.setApplySunday(original_rule.applySunday) rule_period.setApplyMonday(original_rule.applyMonday) rule_period.setApplyTuesday(original_rule.applyTuesday) rule_period.setApplyWednesday(original_rule.applyWednesday) rule_period.setApplyThursday(original_rule.applyThursday) rule_period.setApplyFriday(original_rule.applyFriday) rule_period.setApplySaturday(original_rule.applySaturday) return rule_period end |
#coverMissingDays(sch_rule, sch_day_covered) ⇒ Object
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 1151 def coverMissingDays(sch_rule, sch_day_covered) if sch_day_covered[0] == false sch_rule.setApplySunday(true) end if sch_day_covered[1] == false sch_rule.setApplyMonday(true) end if sch_day_covered[2] == false sch_rule.setApplyTuesday(true) end if sch_day_covered[3] == false sch_rule.setApplyWednesday(true) end if sch_day_covered[4] == false sch_rule.setApplyThursday(true) end if sch_day_covered[5] == false sch_rule.setApplyFriday(true) end if sch_day_covered[6] == false sch_rule.setApplySaturday(true) end end |
#description ⇒ Object
human readable description
19 20 21 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 19 def description return 'This measure adjusts heating and cooling setpoints by a user-specified number of degrees and a user-specified time period. This is applied throughout the entire building.' end |
#modeler_description ⇒ Object
human readable description of modeling approach
24 25 26 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 24 def modeler_description return 'This measure will clone all of the schedules that are used as heating and cooling setpoints for thermal zones. The clones are hooked up to the thermostat in place of the original schedules. Then the schedules are adjusted by the specified values during a specified time period. There is a checkbox to determine if the thermostat for design days should be altered.' end |
#modify_default_day_for_date_period(schedule_set, default_day, days_covered, os_start_date, os_end_date, shift_time_start, shift_time_end, adjustment) ⇒ Object
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 1107 def modify_default_day_for_date_period(schedule_set, default_day, days_covered, os_start_date, os_end_date, shift_time_start, shift_time_end, adjustment) # the new rule created for the ScheduleRuleSet by default has the highest priority (ruleIndex=0) new_default_rule = OpenStudio::Model::ScheduleRule.new(schedule_set, default_day) new_default_rule.setName("#{schedule_set.name.to_s} default day with DF for #{os_start_date.to_s} to #{os_end_date.to_s}") new_default_rule.setStartDate(os_start_date) new_default_rule.setEndDate(os_end_date) coverMissingDays(new_default_rule, days_covered) new_default_day = new_default_rule.daySchedule day_time_vector = new_default_day.times day_value_vector = new_default_day.values new_default_day.clearValues new_default_day = updateDaySchedule(new_default_day, day_time_vector, day_value_vector, shift_time_start, shift_time_end, adjustment) # schedule_set.setScheduleRuleIndex(new_default_rule, 0) return new_default_rule # TODO: if the scheduleRuleSet has holidaySchedule (which is a ScheduleDay), it cannot be altered end |
#modify_rule_for_date_period(original_rule, os_start_date, os_end_date, shift_time_start, shift_time_end, adjustment) ⇒ Object
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 1066 def modify_rule_for_date_period(original_rule, os_start_date, os_end_date, shift_time_start, shift_time_end, adjustment) # The cloned scheduleRule will automatically belongs to the originally scheduleRuleSet # rule_period = original_rule.clone(model).to_ScheduleRule.get # rule_period.daySchedule = original_rule.daySchedule.clone(model) new_rule_name = "#{original_rule.name.to_s} with DF for #{os_start_date.to_s} to #{os_end_date.to_s}" rule_period = clone_rule_with_new_dayschedule(original_rule, new_rule_name) day_rule_period = rule_period.daySchedule day_time_vector = day_rule_period.times day_value_vector = day_rule_period.values if day_time_vector.empty? return false end day_rule_period.clearValues updateDaySchedule(day_rule_period, day_time_vector, day_value_vector, shift_time_start, shift_time_end, adjustment) if rule_period rule_period.setStartDate(os_start_date) rule_period.setEndDate(os_end_date) end return rule_period end |
#modify_rule_for_specific_dates(original_rule, os_start_date, os_end_date, shift_time_start, shift_time_end, adjustment, applied_dates) ⇒ Object
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 1087 def modify_rule_for_specific_dates(original_rule, os_start_date, os_end_date, shift_time_start, shift_time_end, adjustment, applied_dates) new_rule_name = "#{original_rule.name.to_s} with DF for #{os_start_date.to_s} to #{os_end_date.to_s}" rule_period = clone_rule_with_new_dayschedule(original_rule, new_rule_name) day_rule_period = rule_period.daySchedule day_time_vector = day_rule_period.times day_value_vector = day_rule_period.values if day_time_vector.empty? return false end day_rule_period.clearValues updateDaySchedule(day_rule_period, day_time_vector, day_value_vector, shift_time_start, shift_time_end, adjustment) if rule_period applied_dates.each do |date| rule_period.addSpecificDate(date) end end return rule_period end |
#name ⇒ Object
define the name that a user will see
14 15 16 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 14 def name return 'Adjust thermostat setpoint by degrees for peak hours' end |
#run(model, runner, user_arguments) ⇒ Object
define what happens when the measure is run
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 277 def run(model, runner, user_arguments) super(model, runner, user_arguments) # use the built-in error checking if !runner.validateUserArguments(arguments(model), user_arguments) return false end # assign the user inputs to variables heating_adjustment = runner.getDoubleArgumentValue('heating_adjustment', user_arguments) cooling_adjustment = runner.getDoubleArgumentValue('cooling_adjustment', user_arguments) heating_start_time1 = runner.getStringArgumentValue('heating_start_time1', user_arguments) heating_end_time1 = runner.getStringArgumentValue('heating_end_time1', user_arguments) heating_start_time2 = runner.getStringArgumentValue('heating_start_time2', user_arguments) heating_end_time2 = runner.getStringArgumentValue('heating_end_time2', user_arguments) heating_start_time3 = runner.getStringArgumentValue('heating_start_time3', user_arguments) heating_end_time3 = runner.getStringArgumentValue('heating_end_time3', user_arguments) heating_start_time4 = runner.getStringArgumentValue('heating_start_time4', user_arguments) heating_end_time4 = runner.getStringArgumentValue('heating_end_time4', user_arguments) heating_start_time5 = runner.getStringArgumentValue('heating_start_time5', user_arguments) heating_end_time5 = runner.getStringArgumentValue('heating_end_time5', user_arguments) heating_start_date1 = runner.getStringArgumentValue('heating_start_date1', user_arguments) heating_end_date1 = runner.getStringArgumentValue('heating_end_date1', user_arguments) heating_start_date2 = runner.getStringArgumentValue('heating_start_date2', user_arguments) heating_end_date2 = runner.getStringArgumentValue('heating_end_date2', user_arguments) heating_start_date3 = runner.getStringArgumentValue('heating_start_date3', user_arguments) heating_end_date3 = runner.getStringArgumentValue('heating_end_date3', user_arguments) heating_start_date4 = runner.getStringArgumentValue('heating_start_date4', user_arguments) heating_end_date4 = runner.getStringArgumentValue('heating_end_date4', user_arguments) heating_start_date5 = runner.getStringArgumentValue('heating_start_date5', user_arguments) heating_end_date5 = runner.getStringArgumentValue('heating_end_date5', user_arguments) cooling_start_time1 = runner.getStringArgumentValue('cooling_start_time1', user_arguments) cooling_end_time1 = runner.getStringArgumentValue('cooling_end_time1', user_arguments) cooling_start_time2 = runner.getStringArgumentValue('cooling_start_time2', user_arguments) cooling_end_time2 = runner.getStringArgumentValue('cooling_end_time2', user_arguments) cooling_start_time3 = runner.getStringArgumentValue('cooling_start_time3', user_arguments) cooling_end_time3 = runner.getStringArgumentValue('cooling_end_time3', user_arguments) cooling_start_time4 = runner.getStringArgumentValue('cooling_start_time4', user_arguments) cooling_end_time4 = runner.getStringArgumentValue('cooling_end_time4', user_arguments) cooling_start_time5 = runner.getStringArgumentValue('cooling_start_time5', user_arguments) cooling_end_time5 = runner.getStringArgumentValue('cooling_end_time5', user_arguments) cooling_start_date1 = runner.getStringArgumentValue('cooling_start_date1', user_arguments) cooling_end_date1 = runner.getStringArgumentValue('cooling_end_date1', user_arguments) cooling_start_date2 = runner.getStringArgumentValue('cooling_start_date2', user_arguments) cooling_end_date2 = runner.getStringArgumentValue('cooling_end_date2', user_arguments) cooling_start_date3 = runner.getStringArgumentValue('cooling_start_date3', user_arguments) cooling_end_date3 = runner.getStringArgumentValue('cooling_end_date3', user_arguments) cooling_start_date4 = runner.getStringArgumentValue('cooling_start_date4', user_arguments) cooling_end_date4 = runner.getStringArgumentValue('cooling_end_date4', user_arguments) cooling_start_date5 = runner.getStringArgumentValue('cooling_start_date5', user_arguments) cooling_end_date5 = runner.getStringArgumentValue('cooling_end_date5', user_arguments) alt_periods = runner.getBoolArgumentValue('alt_periods', user_arguments) # set the default start and end time based on state if alt_periods state = model.getWeatherFile.stateProvinceRegion if state == '' runner.registerError('Unable to find state in model WeatherFile. The measure cannot be applied.') return false end file = File.open(File.join(File.dirname(__FILE__), "../../../files/seasonal_shedding_peak_hours.json")) default_peak_periods = JSON.load(file) file.close unless default_peak_periods.key?state runner.registerAsNotApplicable("No default inputs for the state of the WeatherFile #{state}") return false end peak_periods = default_peak_periods[state] cooling_start_time1 = heating_start_time1 = peak_periods["winter_peak_start"].split[1] cooling_end_time1 = heating_end_time1 = peak_periods["winter_peak_end"].split[1] cooling_start_time2 = heating_start_time2 = peak_periods["intermediate_peak_start"].split[1] cooling_end_time2 = heating_end_time2 = peak_periods["intermediate_peak_end"].split[1] cooling_start_time3 = heating_start_time3 = peak_periods["summer_peak_start"].split[1] cooling_end_time3 = heating_end_time3 = peak_periods["summer_peak_end"].split[1] cooling_start_time4 = heating_start_time4 = peak_periods["intermediate_peak_start"].split[1] cooling_end_time4 = heating_end_time4 = peak_periods["intermediate_peak_end"].split[1] cooling_start_time5 = heating_start_time5 = peak_periods["winter_peak_start"].split[1] cooling_end_time5 = heating_end_time5 = peak_periods["winter_peak_end"].split[1] cooling_start_date1 = heating_start_date1 = '01-01' cooling_end_date1 = heating_end_date1 = '03-31' cooling_start_date2 = heating_start_date2 = '04-01' cooling_end_date2 = heating_end_date2 = '05-31' cooling_start_date3 = heating_start_date3 = '06-01' cooling_end_date3 = heating_end_date3 = '09-30' cooling_start_date4 = heating_start_date4 = '10-01' cooling_end_date4 = heating_end_date4 = '11-30' cooling_start_date5 = heating_start_date5 = '12-01' cooling_end_date5 = heating_end_date5 = '12-31' end def validate_time_format(star_time, end_time, runner) time1 = /(\d\d):(\d\d):(\d\d)/.match(star_time) time2 = /(\d\d):(\d\d):(\d\d)/.match(end_time) if time1 and time2 os_starttime = OpenStudio::Time.new(star_time) os_endtime = OpenStudio::Time.new(end_time) if star_time >= end_time runner.registerError('The start time needs to be earlier than the end time.') return false else return os_starttime, os_endtime end else runner.registerError('The provided time is not in HH-MM-SS format.') return false end end def validate_date_format(start_date1, end_date1, runner, model) smd = /(\d\d)-(\d\d)/.match(start_date1) emd = /(\d\d)-(\d\d)/.match(end_date1) if smd.nil? or emd.nil? runner.registerError('The provided date is not in MM-DD format.') return false else start_month = smd[1].to_i start_day = smd[2].to_i end_month = emd[1].to_i end_day = emd[2].to_i if start_date1 > end_date1 runner.registerError('The start date cannot be later date the end time.') return false else os_start_date = model.getYearDescription.makeDate(start_month, start_day) os_end_date = model.getYearDescription.makeDate(end_month, end_day) return os_start_date, os_end_date end end end # First time period for heating heating_time_result1 = validate_time_format(heating_start_time1, heating_end_time1, runner) if heating_time_result1 heating_shift_time_start1, heating_shift_time_end1 = heating_time_result1 else runner.registerError('The required time period for the adjustment is not in correct format!') return false end # The other optional time periods heating_shift_time_start2,heating_shift_time_end2,heating_shift_time_start3,heating_shift_time_end3,heating_shift_time_start4,heating_shift_time_end4,heating_shift_time_start5,heating_shift_time_end5 = [nil]*8 if (not heating_start_time2.empty?) and (not heating_end_time2.empty?) heating_time_result2 = validate_time_format(heating_start_time2, heating_end_time2, runner) if heating_time_result2 heating_shift_time_start2, heating_shift_time_end2 = heating_time_result2 end end if (not heating_start_time3.empty?) and (not heating_end_time3.empty?) heating_time_result3 = validate_time_format(heating_start_time3, heating_end_time3, runner) if heating_time_result3 heating_shift_time_start3, heating_shift_time_end3 = heating_time_result3 end end if (not heating_start_time4.empty?) and (not heating_end_time4.empty?) heating_time_result4 = validate_time_format(heating_start_time4, heating_end_time4, runner) if heating_time_result4 heating_shift_time_start4, heating_shift_time_end4 = heating_time_result4 end end if (not heating_start_time5.empty?) and (not heating_end_time5.empty?) heating_time_result5 = validate_time_format(heating_start_time5, heating_end_time5, runner) if heating_time_result5 heating_shift_time_start5, heating_shift_time_end5 = heating_time_result5 end end # First time period for cooling cooling_time_result1 = validate_time_format(cooling_start_time1, cooling_end_time1, runner) if cooling_time_result1 cooling_shift_time_start1, cooling_shift_time_end1 = cooling_time_result1 else runner.registerError('The required time period for the adjustment is not in correct format!') return false end # The other optional time periods cooling_shift_time_start2,cooling_shift_time_end2,cooling_shift_time_start3,cooling_shift_time_end3,cooling_shift_time_start4,cooling_shift_time_end4,cooling_shift_time_start5,cooling_shift_time_end5 = [nil]*8 if (not cooling_start_time2.empty?) and (not cooling_end_time2.empty?) cooling_time_result2 = validate_time_format(cooling_start_time2, cooling_end_time2, runner) if cooling_time_result2 cooling_shift_time_start2, cooling_shift_time_end2 = cooling_time_result2 end end if (not cooling_start_time3.empty?) and (not cooling_end_time3.empty?) cooling_time_result3 = validate_time_format(cooling_start_time3, cooling_end_time3, runner) if cooling_time_result3 cooling_shift_time_start3, cooling_shift_time_end3 = cooling_time_result3 end end if (not cooling_start_time4.empty?) and (not cooling_end_time4.empty?) cooling_time_result4 = validate_time_format(cooling_start_time4, cooling_end_time4, runner) if cooling_time_result4 cooling_shift_time_start4, cooling_shift_time_end4 = cooling_time_result4 end end if (not cooling_start_time5.empty?) and (not cooling_end_time5.empty?) cooling_time_result5 = validate_time_format(cooling_start_time5, cooling_end_time5, runner) if cooling_time_result5 cooling_shift_time_start5, cooling_shift_time_end5 = cooling_time_result5 end end # First date period heating_date_result1 = validate_date_format(heating_start_date1, heating_end_date1, runner, model) if heating_date_result1 os_heating_start_date1, os_heating_end_date1 = heating_date_result1 else runner.registerError('The required date period for the heating setpoint adjustment is not in correct format!') return false end # Other optional date period os_heating_start_date2, os_heating_end_date2, os_heating_start_date3, os_heating_end_date3, os_heating_start_date4, os_heating_end_date4, os_heating_start_date5, os_heating_end_date5 = [nil]*8 if (not heating_start_date2.empty?) and (not heating_end_date2.empty?) heating_date_result2 = validate_date_format(heating_start_date2, heating_end_date2, runner, model) if heating_date_result2 os_heating_start_date2, os_heating_end_date2 = heating_date_result2 end end if (not heating_start_date3.empty?) and (not heating_end_date3.empty?) heating_date_result3 = validate_date_format(heating_start_date3, heating_end_date3, runner, model) if heating_date_result3 os_heating_start_date3, os_heating_end_date3 = heating_date_result3 end end if (not heating_start_date4.empty?) and (not heating_end_date4.empty?) heating_date_result4 = validate_date_format(heating_start_date4, heating_end_date4, runner, model) if heating_date_result4 os_heating_start_date4, os_heating_end_date4 = heating_date_result4 end end if (not heating_start_date5.empty?) and (not heating_end_date5.empty?) heating_date_result5 = validate_date_format(heating_start_date5, heating_end_date5, runner, model) if heating_date_result5 os_heating_start_date5, os_heating_end_date5 = heating_date_result5 end end # First date period cooling_date_result1 = validate_date_format(cooling_start_date1, cooling_end_date1, runner, model) if cooling_date_result1 os_cooling_start_date1, os_cooling_end_date1 = cooling_date_result1 else runner.registerError('The required date period for the cooling setpoint adjustment is not in correct format!') return false end # Other optional date period os_cooling_start_date2, os_cooling_end_date2, os_cooling_start_date3, os_cooling_end_date3, os_cooling_start_date4, os_cooling_end_date4, os_cooling_start_date5, os_cooling_end_date5 = [nil]*8 if (not cooling_start_date2.empty?) and (not cooling_end_date2.empty?) cooling_date_result2 = validate_date_format(cooling_start_date2, cooling_end_date2, runner, model) if cooling_date_result2 os_cooling_start_date2, os_cooling_end_date2 = cooling_date_result2 end end if (not cooling_start_date3.empty?) and (not cooling_end_date3.empty?) cooling_date_result3 = validate_date_format(cooling_start_date3, cooling_end_date3, runner, model) if cooling_date_result3 os_cooling_start_date3, os_cooling_end_date3 = cooling_date_result3 end end if (not cooling_start_date4.empty?) and (not cooling_end_date4.empty?) cooling_date_result4 = validate_date_format(cooling_start_date4, cooling_end_date4, runner, model) if cooling_date_result4 os_cooling_start_date4, os_cooling_end_date4 = cooling_date_result4 end end if (not cooling_start_date5.empty?) and (not cooling_end_date5.empty?) cooling_date_result5 = validate_date_format(cooling_start_date5, cooling_end_date5, runner, model) if cooling_date_result5 os_cooling_start_date5, os_cooling_end_date5 = cooling_date_result5 end end # ruby test to see if first charter of string is uppercase letter if cooling_adjustment < 0 runner.registerWarning('Lowering the cooling setpoint will increase energy use. Please double check your input.') elsif cooling_adjustment.abs > 500 runner.registerError("#{cooling_adjustment} is larger than typical setpoint adjustment. Please double check your input.") return false elsif cooling_adjustment.abs > 50 runner.registerWarning("#{cooling_adjustment} is larger than typical setpoint adjustment. Please double check your input.") end if heating_adjustment > 0 runner.registerWarning('Raising the heating setpoint will increase energy use. Please double check your input.') elsif heating_adjustment.abs > 500 runner.registerError("#{heating_adjustment} is larger than typical setpoint adjustment. Please double check your input.") return false elsif heating_adjustment.abs > 50 runner.registerWarning("#{heating_adjustment} is larger than typical setpoint adjustment. Please double check your input.") end # define starting units cooling_adjustment_ip = OpenStudio::Quantity.new(cooling_adjustment, TEMP_IP_UNIT) cooling_adjustment_si = cooling_adjustment * 5 / 9.0 heating_adjustment_ip = OpenStudio::Quantity.new(heating_adjustment, TEMP_IP_UNIT) heating_adjustment_si = heating_adjustment * 5 / 9.0 # push schedules to hash to avoid making unnecessary duplicates clg_set_schs = {} htg_set_schs = {} # get spaces thermostats = model.getThermostatSetpointDualSetpoints thermostats.each do |thermostat| # setup new cooling setpoint schedule clg_set_sch = thermostat.coolingSetpointTemperatureSchedule if clg_set_sch.empty? runner.registerWarning("Thermostat '#{thermostat.name}' doesn't have a cooling setpoint schedule") else old_clg_schedule = clg_set_sch.get old_schedule_name = old_clg_schedule.name.to_s # clone if not already in hash if old_clg_schedule.to_ScheduleRuleset.is_initialized if clg_set_schs.key?(old_schedule_name) new_clg_set_sch = clg_set_schs[old_schedule_name] else # active_indices = old_clg_schedule.to_ScheduleRuleset.get.getActiveRuleIndices(os_cooling_start_date5, os_cooling_end_date5) # active_indices.each do |i| # runner.registerInfo("Rule applied to the fifth cooling period: #{old_clg_schedule.to_ScheduleRuleset.get.scheduleRules[i].name.to_s}") # end new_clg_set_sch = old_clg_schedule.clone(model) new_clg_set_sch = new_clg_set_sch.to_Schedule.get new_clg_set_sch.setName("#{old_schedule_name} adjusted by #{cooling_adjustment_ip}") runner.registerInfo("Cooling schedule #{old_schedule_name} is cloned to #{new_clg_set_sch.name.to_s}") # add to the hash clg_set_schs[old_schedule_name] = new_clg_set_sch end # hook up cloned schedule to thermostat thermostat.setCoolingSetpointTemperatureSchedule(new_clg_set_sch) else runner.registerWarning("Schedule '#{old_schedule_name}' isn't a ScheduleRuleset object and won't be altered by this measure.") end end # setup new heating setpoint schedule htg_set_sch = thermostat.heatingSetpointTemperatureSchedule if htg_set_sch.empty? runner.registerWarning("Thermostat '#{thermostat.name}' doesn't have a heating setpoint schedule.") else old_htg_schedule = htg_set_sch.get old_schedule_name = old_htg_schedule.name.to_s if old_htg_schedule.to_ScheduleRuleset.is_initialized if htg_set_schs.key?(old_schedule_name) new_htg_set_sch = htg_set_schs[old_schedule_name] else new_htg_set_sch = old_htg_schedule.clone(model) new_htg_set_sch = new_htg_set_sch.to_Schedule.get new_htg_set_sch.setName("#{old_schedule_name} adjusted by #{heating_adjustment_ip}") runner.registerInfo("Cooling schedule #{old_schedule_name} is cloned to #{new_htg_set_sch.name.to_s}") # add to the hash htg_set_schs[old_schedule_name] = new_htg_set_sch end # hook up clone to thermostat thermostat.setHeatingSetpointTemperatureSchedule(new_htg_set_sch) else runner.registerWarning("Schedule '#{old_schedule_name}' isn't a ScheduleRuleset object and won't be altered by this measure.") end end end # setting up variables to use for initial and final condition clg_sch_set_values = [] # may need to flatten this htg_sch_set_values = [] # may need to flatten this final_clg_sch_set_values = [] final_htg_sch_set_values = [] # consider issuing a warning if the model has un-conditioned thermal zones (no ideal air loads or hvac) zones = model.getThermalZones zones.each do |zone| # if you have a thermostat but don't have ideal air loads or zone equipment then issue a warning if !zone.thermostatSetpointDualSetpoint.empty? && !zone.useIdealAirLoads && (zone.equipment.size == 0) runner.registerWarning("Thermal zone '#{zone.name}' has a thermostat but does not appear to be conditioned.") end end # daylightsaving adjustment added in visualization, so deprecated here # # Check model's daylight saving period, if cooling period is within daylight saving period, shift the cooling start time and end time by one hour later # if model.getObjectsByType('OS:RunPeriodControl:DaylightSavingTime'.to_IddObjectType).size >= 1 # runperiodctrl_daylgtsaving = model.getRunPeriodControlDaylightSavingTime # daylight_saving_startdate = runperiodctrl_daylgtsaving.startDate # daylight_saving_enddate = runperiodctrl_daylgtsaving.endDate # if summerStartDate >= OpenStudio::Date.new(daylight_saving_startdate.monthOfYear, daylight_saving_startdate.dayOfMonth, summerStartDate.year) && summerEndDate <= OpenStudio::Date.new(daylight_saving_enddate.monthOfYear, daylight_saving_enddate.dayOfMonth, summerStartDate.year) # shift_time_cooling_start += OpenStudio::Time.new(0,1,0,0) # shift_time_cooling_end += OpenStudio::Time.new(0,1,0,0) # end # end applicable_flag = false cooling_adjust_period_inputs = { "period1" => {"date_start"=>os_cooling_start_date1, "date_end"=>os_cooling_end_date1, "time_start"=>cooling_shift_time_start1, "time_end"=>cooling_shift_time_end1}, "period2" => {"date_start"=>os_cooling_start_date2, "date_end"=>os_cooling_end_date2, "time_start"=>cooling_shift_time_start2, "time_end"=>cooling_shift_time_end2}, "period3" => {"date_start"=>os_cooling_start_date3, "date_end"=>os_cooling_end_date3, "time_start"=>cooling_shift_time_start3, "time_end"=>cooling_shift_time_end3}, "period4" => {"date_start"=>os_cooling_start_date4, "date_end"=>os_cooling_end_date4, "time_start"=>cooling_shift_time_start4, "time_end"=>cooling_shift_time_end4}, "period5" => {"date_start"=>os_cooling_start_date5, "date_end"=>os_cooling_end_date5, "time_start"=>cooling_shift_time_start5, "time_end"=>cooling_shift_time_end5} } # make cooling schedule adjustments and rename. Put in check to skip and warn if schedule not ruleset clg_set_schs.each do |old_sch_name, os_sch| # old name and new object for schedule schedule = os_sch.to_ScheduleRuleset.get rules = schedule.scheduleRules days_covered = Array.new(7, false) current_index = 0 # TODO: when ruleset has multiple rules for each month or couple of months instead of a full year, should first see if the period overlaps with summer/winter if rules.length <= 0 runner.registerWarning("Cooling setpoint schedule '#{old_sch_name}' is a ScheduleRuleSet, but has no ScheduleRules associated. It won't be altered by this measure.") else runner.registerInfo("schedule rule set #{old_sch_name} has #{rules.length} rules.") rules.each do |rule| runner.registerInfo("---- Rule No.#{rule.ruleIndex}: #{rule.name.to_s}") if rule.dateSpecificationType == "SpecificDates" ## if the rule applies to SpecificDates, collect the dates that fall into each adjustment date period, ## and create a new rule for each date period with covered specific dates runner.registerInfo("======= The rule #{rule.name.to_s} only covers specific dates.") ## the specificDates cannot be modified in place because it's a frozen array all_specific_dates = [] rule.specificDates.each { |date| all_specific_dates << date } cooling_adjust_period_inputs.each do |period, period_inputs| period_inputs["specific_dates"] = [] os_start_date = period_inputs["date_start"] os_end_date = period_inputs["date_end"] shift_time_start = period_inputs["time_start"] shift_time_end = period_inputs["time_end"] if [os_start_date, os_end_date, shift_time_start, shift_time_end].all? rule.specificDates.each do |covered_date| if covered_date >= os_start_date and covered_date <= os_end_date period_inputs["specific_dates"] << covered_date all_specific_dates.delete(covered_date) end end runner.registerInfo("========= Specific dates within date range #{os_start_date.to_s} to #{os_end_date.to_s}: #{period_inputs["specific_dates"].map(&:to_s)}") runner.registerInfo("!!! Specific dates haven't been covered: #{all_specific_dates.map(&:to_s)}") next if period_inputs["specific_dates"].empty? rule_period = modify_rule_for_specific_dates(rule, os_start_date, os_end_date, shift_time_start, shift_time_end, cooling_adjustment_si, period_inputs["specific_dates"]) if rule_period applicable_flag = true if period == "period1" final_clg_sch_set_values << rule_period.daySchedule.values end if schedule.setScheduleRuleIndex(rule_period, current_index) current_index += 1 runner.registerInfo("-------- The rule #{rule_period.name.to_s} for #{rule_period.dateSpecificationType} is added as priority #{current_index}") else runner.registerError("Fail to set rule index for #{rule_period.name.to_s}.") end end end end if all_specific_dates.empty? ## if all specific dates have been covered by new rules for each adjustment date period, remove the original rule runner.registerInfo("The original rule is removed since no specific date left") else ## if there's still dates left to be covered, modify the original rule to only cover these dates ## (this is just in case that the rule order was not set correctly, and the original rule is still applied to all specific dates; ## also to make the logic in OSM more clearer) ## the specificDates cannot be modified in place, so create a new rule with the left dates to replace the original rule original_rule_update = clone_rule_with_new_dayschedule(rule, rule.name.to_s + " - dates left") schedule.setScheduleRuleIndex(original_rule_update, current_index) current_index += 1 all_specific_dates.each do |date| original_rule_update.addSpecificDate(date) end runner.registerInfo("-------- The original rule #{rule.name.to_s} is modified to only cover the rest of the dates: #{all_specific_dates.map(&:to_s)}") runner.registerInfo("-------- and is shifted to priority #{current_index}") end rule.remove else ## If the rule applies to a DateRange, check if the DateRange overlaps with each adjustment date period ## if so, create a new rule for that adjustment date period runner.registerInfo("******* The rule #{rule.name.to_s} covers date range #{rule.startDate.get} - #{rule.endDate.get}.") cooling_adjust_period_inputs.each do |period, period_inputs| os_start_date = period_inputs["date_start"] os_end_date = period_inputs["date_end"] shift_time_start = period_inputs["time_start"] shift_time_end = period_inputs["time_end"] if [os_start_date, os_end_date, shift_time_start, shift_time_end].all? ## check if the original rule applied DateRange overlaps with the adjustment date period overlapped, new_start_dates, new_end_dates = check_date_ranges_overlap(rule, os_start_date, os_end_date) if overlapped new_start_dates.each_with_index do |start_date, i| rule_period = modify_rule_for_date_period(rule, start_date, new_end_dates[i], shift_time_start, shift_time_end, cooling_adjustment_si) if rule_period applicable_flag = true if period == "period1" checkDaysCovered(rule_period, days_covered) final_clg_sch_set_values << rule_period.daySchedule.values end if schedule.setScheduleRuleIndex(rule_period, current_index) current_index += 1 runner.registerInfo("-------- The rule #{rule_period.name.to_s} is added as priority #{current_index}") else runner.registerError("Fail to set rule index for #{rule_period.name.to_s}.") end end end end end end ## The original rule will be shifted to the currently lowest priority ## Setting the rule to an existing index will automatically push all other rules after it down if schedule.setScheduleRuleIndex(rule, current_index) runner.registerInfo("-------- The original rule #{rule.name.to_s} is shifted to priority #{current_index}") current_index += 1 else runner.registerError("Fail to set rule index for #{rule.name.to_s}.") end end end end default_day = schedule.defaultDaySchedule if days_covered.include?(false) runner.registerInfo("Some days use default day. Adding new scheduleRule from defaultDaySchedule for applicable date period.") cooling_adjust_period_inputs.each do |period, period_inputs| os_start_date = period_inputs["date_start"] os_end_date = period_inputs["date_end"] shift_time_start = period_inputs["time_start"] shift_time_end = period_inputs["time_end"] if [os_start_date, os_end_date, shift_time_start, shift_time_end].all? new_default_rule_period = modify_default_day_for_date_period(schedule, default_day, days_covered, os_start_date, os_end_date, shift_time_start, shift_time_end, cooling_adjustment_si) schedule.setScheduleRuleIndex(new_default_rule_period, current_index) applicable_flag = true if period == 'period1' final_clg_sch_set_values << new_default_rule_period.daySchedule.values end end end end end ###################################################################### heating_adjust_period_inputs = { "period1" => {"date_start"=>os_heating_start_date1, "date_end"=>os_heating_end_date1, "time_start"=>heating_shift_time_start1, "time_end"=>heating_shift_time_end1}, "period2" => {"date_start"=>os_heating_start_date2, "date_end"=>os_heating_end_date2, "time_start"=>heating_shift_time_start2, "time_end"=>heating_shift_time_end2}, "period3" => {"date_start"=>os_heating_start_date3, "date_end"=>os_heating_end_date3, "time_start"=>heating_shift_time_start3, "time_end"=>heating_shift_time_end3}, "period4" => {"date_start"=>os_heating_start_date4, "date_end"=>os_heating_end_date4, "time_start"=>heating_shift_time_start4, "time_end"=>heating_shift_time_end4}, "period5" => {"date_start"=>os_heating_start_date5, "date_end"=>os_heating_end_date5, "time_start"=>heating_shift_time_start5, "time_end"=>heating_shift_time_end5} } # make heating schedule adjustments and rename. Put in check to skip and warn if schedule not ruleset htg_set_schs.each do |old_sch_name, os_sch| # old name and new object for schedule schedule = os_sch.to_ScheduleRuleset.get rules = schedule.scheduleRules days_covered = Array.new(7, false) current_index = 0 if rules.length <= 0 runner.registerWarning("Heating setpoint schedule '#{old_sch_name}' is a ScheduleRuleSet, but has no ScheduleRules associated. It won't be altered by this measure.") else runner.registerInfo("schedule rule set #{old_sch_name} has #{rules.length} rules.") rules.each do |rule| runner.registerInfo("---- Rule No.#{rule.ruleIndex}: #{rule.name.to_s}") if rule.dateSpecificationType == "SpecificDates" ## if the rule applies to SpecificDates, collect the dates that fall into each adjustment date period, ## and create a new rule for each date period with covered specific dates runner.registerInfo("======= The rule #{rule.name.to_s} only covers specific dates.") ## the specificDates cannot be modified in place because it's a frozen array all_specific_dates = [] rule.specificDates.each { |date| all_specific_dates << date } heating_adjust_period_inputs.each do |period, period_inputs| period_inputs["specific_dates"] = [] os_start_date = period_inputs["date_start"] os_end_date = period_inputs["date_end"] shift_time_start = period_inputs["time_start"] shift_time_end = period_inputs["time_end"] if [os_start_date, os_end_date, shift_time_start, shift_time_end].all? rule.specificDates.each do |covered_date| if covered_date >= os_start_date and covered_date <= os_end_date period_inputs["specific_dates"] << covered_date all_specific_dates.delete(covered_date) end end runner.registerInfo("========= Specific dates within date range #{os_start_date.to_s} to #{os_end_date.to_s}: #{period_inputs["specific_dates"].map(&:to_s)}") rule_period = modify_rule_for_specific_dates(rule, os_start_date, os_end_date, shift_time_start, shift_time_end, heating_adjustment_si, period_inputs["specific_dates"]) if rule_period applicable_flag = true if period == "period1" final_htg_sch_set_values << rule_period.daySchedule.values end if schedule.setScheduleRuleIndex(rule_period, current_index) current_index += 1 runner.registerInfo("-------- The rule #{rule_period.name.to_s} for #{rule_period.dateSpecificationType} is added as priority #{current_index}") else runner.registerError("Fail to set rule index for #{rule_period.name.to_s}.") end end end end if all_specific_dates.empty? ## if all specific dates have been covered by new rules for each adjustment date period, remove the original rule runner.registerInfo("The original rule is removed since no specific date left") else ## if there's still dates left to be covered, modify the original rule to only cover these dates ## (this is just in case that the rule order was not set correctly, and the original rule is still applied to all specific dates; ## also to make the logic in OSM more clearer) ## the specificDates cannot be modified in place, so create a new rule with the left dates to replace the original rule original_rule_update = clone_rule_with_new_dayschedule(rule, rule.name.to_s + " - dates left") schedule.setScheduleRuleIndex(original_rule_update, current_index) current_index += 1 all_specific_dates.each do |date| original_rule_update.addSpecificDate(date) end runner.registerInfo("-------- The original rule #{rule.name.to_s} is modified to only cover the rest of the dates: #{all_specific_dates.map(&:to_s)}") runner.registerInfo("-------- and is shifted to priority #{current_index}") end rule.remove else heating_adjust_period_inputs.each do |period, period_inputs| os_start_date = period_inputs["date_start"] os_end_date = period_inputs["date_end"] shift_time_start = period_inputs["time_start"] shift_time_end = period_inputs["time_end"] if [os_start_date, os_end_date, shift_time_start, shift_time_end].all? overlapped, new_start_dates, new_end_dates = check_date_ranges_overlap(rule, os_start_date, os_end_date) if overlapped new_start_dates.each_with_index do |start_date, i| rule_period = modify_rule_for_date_period(rule, start_date, new_end_dates[i], shift_time_start, shift_time_end, heating_adjustment_si) if rule_period applicable_flag = true if period == "period1" checkDaysCovered(rule_period, days_covered) final_htg_sch_set_values << rule_period.daySchedule.values end if schedule.setScheduleRuleIndex(rule_period, current_index) current_index += 1 runner.registerInfo("-------- The rule #{rule_period.name.to_s} is added as priority #{current_index}") else runner.registerError("Fail to set rule index for #{rule_period.name.to_s}.") end end end end end end # The original rule will be shifted to the currently lowest priority # Setting the rule to an existing index will automatically push all other rules after it down if schedule.setScheduleRuleIndex(rule, current_index) runner.registerInfo("-------- The original rule #{rule.name.to_s} is shifted to priority #{current_index}") current_index += 1 else runner.registerError("Fail to set rule index for #{rule.name.to_s}.") end end end end default_day = schedule.defaultDaySchedule if days_covered.include?(false) runner.registerInfo("Some days use default day. Adding new scheduleRule from defaultDaySchedule for applicable date period.") heating_adjust_period_inputs.each do |period, period_inputs| os_start_date = period_inputs["date_start"] os_end_date = period_inputs["date_end"] shift_time_start = period_inputs["time_start"] shift_time_end = period_inputs["time_end"] if [os_start_date, os_end_date, shift_time_start, shift_time_end].all? new_default_rule_period = modify_default_day_for_date_period(schedule, default_day, days_covered, os_start_date, os_end_date, shift_time_start, shift_time_end, heating_adjustment_si) schedule.setScheduleRuleIndex(new_default_rule_period, current_index) applicable_flag = true if period == 'period1' final_htg_sch_set_values << new_default_rule_period.daySchedule.values end end end end end model.getEnergyManagementSystemActuators.each do |ems_actuator| if ems_actuator.actuatedComponent.is_initialized old_sch_name = ems_actuator.actuatedComponent.get.name.to_s if clg_set_schs.key?old_sch_name replaced_sch = clg_set_schs[old_sch_name] ems_actuator.setActuatedComponent(replaced_sch) runner.registerInfo("The actuator component for EMS actuator #{ems_actuator.name.to_s} has been changed from #{old_sch_name} to #{replaced_sch.name.to_s}") elsif htg_set_schs.key?old_sch_name replaced_sch = htg_set_schs[old_sch_name] ems_actuator.setActuatedComponent(replaced_sch) runner.registerInfo("The actuator component for EMS actuator #{ems_actuator.name.to_s} has been changed from #{old_sch_name} to #{replaced_sch.name.to_s}") end end end # not applicable if no schedules can be altered if applicable_flag == false runner.registerAsNotApplicable('No thermostat schedules in the models could be altered.') end # get min and max heating and cooling and convert to IP for final final_clg_sch_set_values = final_clg_sch_set_values.flatten final_htg_sch_set_values = final_htg_sch_set_values.flatten if !final_clg_sch_set_values.empty? final_min_clg_si = OpenStudio::Quantity.new(final_clg_sch_set_values.min, TEMP_SI_UNIT) final_max_clg_si = OpenStudio::Quantity.new(final_clg_sch_set_values.max, TEMP_SI_UNIT) final_min_clg_ip = OpenStudio.convert(final_min_clg_si, TEMP_IP_UNIT).get final_max_clg_ip = OpenStudio.convert(final_max_clg_si, TEMP_IP_UNIT).get else final_min_clg_ip = 'NA' final_max_clg_ip = 'NA' end # get min and max if values exist if !final_htg_sch_set_values.empty? final_min_htg_si = OpenStudio::Quantity.new(final_htg_sch_set_values.min, TEMP_SI_UNIT) final_max_htg_si = OpenStudio::Quantity.new(final_htg_sch_set_values.max, TEMP_SI_UNIT) final_min_htg_ip = OpenStudio.convert(final_min_htg_si, TEMP_IP_UNIT).get final_max_htg_ip = OpenStudio.convert(final_max_htg_si, TEMP_IP_UNIT).get else final_min_htg_ip = 'NA' final_max_htg_ip = 'NA' end # reporting final condition of model finishing_spaces = model.getSpaces runner.registerFinalCondition("Final cooling setpoints used in the model range from #{final_min_clg_ip} to #{final_max_clg_ip}. Final heating setpoints used in the model range from #{final_min_htg_ip} to #{final_max_htg_ip}.") return true end |
#updateDaySchedule(sch_day, vec_time, vec_value, time_begin, time_end, adjustment) ⇒ Object
1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 1176 def updateDaySchedule(sch_day, vec_time, vec_value, time_begin, time_end, adjustment) count = 0 vec_time.each_with_index do |, i| adjusted_value = vec_value[i] + adjustment if > time_begin && < time_end && count == 0 sch_day.addValue(time_begin, vec_value[i]) sch_day.addValue(, adjusted_value) count = 1 elsif == time_end && count == 0 sch_day.addValue(time_begin, vec_value[i]) sch_day.addValue(, adjusted_value) count = 2 elsif == time_begin && count == 0 sch_day.addValue(, vec_value[i]) count = 1 elsif > time_end && count == 0 sch_day.addValue(time_begin, vec_value[i]) sch_day.addValue(time_end, adjusted_value) sch_day.addValue(, vec_value[i]) count = 2 elsif > time_begin && < time_end && count==1 sch_day.addValue(, adjusted_value) elsif == time_end && count==1 sch_day.addValue(, adjusted_value) count = 2 elsif > time_end && count == 1 sch_day.addValue(time_end, adjusted_value) sch_day.addValue(, vec_value[i]) count = 2 else sch_day.addValue(, vec_value[i]) end end return sch_day end |
#updateDaySchedule_old(sch_day, vec_time, vec_value, time_begin, time_end, adjustment) ⇒ Object
TODO check if this function works
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 1213 def updateDaySchedule_old(sch_day, vec_time, vec_value, time_begin, time_end, adjustment) # indicator: 0:schedule unchanged, 1:schedule changed at least once, 2:schedule change completed count = 0 for i in 0..(vec_time.size - 1) v_si = OpenStudio::Quantity.new(vec_value[i], TEMP_SI_UNIT) v_ip = OpenStudio.convert(v_si, TEMP_IP_UNIT).get target_v_ip = v_ip + adjustment target_temp_si = OpenStudio.convert(target_v_ip, TEMP_SI_UNIT).get if vec_time[i]>time_begin&&vec_time[i]<time_end && count == 0 sch_day.addValue(time_begin, vec_value[i]) sch_day.addValue(vec_time[i],target_temp_si.value) count = 1 elsif vec_time[i]>time_end && count == 0 sch_day.addValue(time_begin,vec_value[i]) sch_day.addValue(time_end,target_temp_si.value) sch_day.addValue(vec_time[i],vec_value[i]) count = 2 elsif vec_time[i]>time_begin && vec_time[i]<=time_end && count==1 sch_day.addValue(vec_time[i], vec_value[i]) elsif vec_time[i]>time_end && count == 1 sch_day.addValue(time_end, target_temp_si.value) sch_day.addValue(vec_time[i], vec_value[i]) count = 2 else # override target_v_ip = v_ip target_temp_si = OpenStudio.convert(target_v_ip, TEMP_SI_UNIT).get sch_day.addValue(vec_time[i], target_temp_si.value) end end return sch_day end |
#validate_date_format(start_date1, end_date1, runner, model) ⇒ Object
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 386 def validate_date_format(start_date1, end_date1, runner, model) smd = /(\d\d)-(\d\d)/.match(start_date1) emd = /(\d\d)-(\d\d)/.match(end_date1) if smd.nil? or emd.nil? runner.registerError('The provided date is not in MM-DD format.') return false else start_month = smd[1].to_i start_day = smd[2].to_i end_month = emd[1].to_i end_day = emd[2].to_i if start_date1 > end_date1 runner.registerError('The start date cannot be later date the end time.') return false else os_start_date = model.getYearDescription.makeDate(start_month, start_day) os_end_date = model.getYearDescription.makeDate(end_month, end_day) return os_start_date, os_end_date end end end |
#validate_time_format(star_time, end_time, runner) ⇒ Object
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'lib/measures/AdjustThermostatSetpointsByDegreesForPeakHours/measure.rb', line 368 def validate_time_format(star_time, end_time, runner) time1 = /(\d\d):(\d\d):(\d\d)/.match(star_time) time2 = /(\d\d):(\d\d):(\d\d)/.match(end_time) if time1 and time2 os_starttime = OpenStudio::Time.new(star_time) os_endtime = OpenStudio::Time.new(end_time) if star_time >= end_time runner.registerError('The start time needs to be earlier than the end time.') return false else return os_starttime, os_endtime end else runner.registerError('The provided time is not in HH-MM-SS format.') return false end end |