Class: ZEDGK12HVAC
- Inherits:
-
OpenStudio::Measure::ModelMeasure
- Object
- OpenStudio::Measure::ModelMeasure
- ZEDGK12HVAC
- Defined in:
- lib/measures/zedgk_12_hvac_gshp_doas/measure.rb
Overview
start the measure
Instance Method Summary collapse
-
#arguments(model) ⇒ Object
define the arguments that the user will input.
-
#name ⇒ Object
define the name that a user will see, this method may be deprecated as the display name in PAT comes from the name field in measure.xml.
-
#run(model, runner, user_arguments) ⇒ Object
define what happens when the measure is run.
Instance Method Details
#arguments(model) ⇒ Object
define the arguments that the user will input
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 |
# File 'lib/measures/zedgk_12_hvac_gshp_doas/measure.rb', line 36 def arguments(model) args = OpenStudio::Measure::OSArgumentVector.new # create an argument for a space type to be used in the model, to see if one should be mapped as ceiling return air plenum spaceTypes = model.getSpaceTypes usedSpaceTypes_handle = OpenStudio::StringVector.new usedSpaceTypes_displayName = OpenStudio::StringVector.new spaceTypes.each do |spaceType| # TODO: - I need to update this to use helper so GUI sorts by display name if !spaceType.spaces.empty? # only show space types used in the building usedSpaceTypes_handle << spaceType.handle.to_s usedSpaceTypes_displayName << spaceType.name.to_s end end # make an argument for space type ceilingReturnPlenumSpaceType = OpenStudio::Measure::OSArgument.makeChoiceArgument('ceilingReturnPlenumSpaceType', usedSpaceTypes_handle, usedSpaceTypes_displayName, false) ceilingReturnPlenumSpaceType.setDisplayName('This space type should be part of a ceiling return air plenum.') # ceilingReturnPlenumSpaceType.setDefaultValue("We don't want a default, this is an optional argument") args << ceilingReturnPlenumSpaceType # make an argument for material and installation cost # todo - I would like to split the costing out to the air loops weighted by area of building served vs. just sticking it on the building costTotalHVACSystem = OpenStudio::Measure::OSArgument.makeDoubleArgument('costTotalHVACSystem', true) costTotalHVACSystem.setDisplayName('Total Cost for HVAC System ($).') costTotalHVACSystem.setDefaultValue(0.0) args << costTotalHVACSystem # make an argument to remove existing costs remake_schedules = OpenStudio::Measure::OSArgument.makeBoolArgument('remake_schedules', true) remake_schedules.setDisplayName('Apply recommended availability and ventilation schedules for air handlers?') remake_schedules.setDefaultValue(true) args << remake_schedules return args end |
#name ⇒ Object
define the name that a user will see, this method may be deprecated as the display name in PAT comes from the name field in measure.xml
31 32 33 |
# File 'lib/measures/zedgk_12_hvac_gshp_doas/measure.rb', line 31 def name return 'ZEDG K12 HVAC GSHP with DOAS' end |
#run(model, runner, user_arguments) ⇒ Object
define what happens when the measure is run
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 275 276 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 |
# File 'lib/measures/zedgk_12_hvac_gshp_doas/measure.rb', line 73 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 ### START INPUTS # assign the user inputs to variables ceilingReturnPlenumSpaceType = runner.getOptionalWorkspaceObjectChoiceValue('ceilingReturnPlenumSpaceType', user_arguments, model) costTotalHVACSystem = runner.getDoubleArgumentValue('costTotalHVACSystem', user_arguments) remake_schedules = runner.getBoolArgumentValue('remake_schedules', user_arguments) # check that spaceType was chosen and exists in model ceilingReturnPlenumSpaceTypeCheck = OsLib_HelperMethods.checkOptionalChoiceArgFromModelObjects(ceilingReturnPlenumSpaceType, 'ceilingReturnPlenumSpaceType', 'to_SpaceType', runner, user_arguments) ceilingReturnPlenumSpaceTypeCheck == false ? (return false) : (ceilingReturnPlenumSpaceType = ceilingReturnPlenumSpaceTypeCheck['modelObject']) # default building/ secondary space types standardBuildingTypeTest = ['PrimarySchool', 'SecondarySchool'] # ML Not used yet secondarySpaceTypeTest = ['Cafeteria', 'Kitchen', 'Gym', 'Auditorium'] primarySpaceType = 'Classroom' # TODO: - why aren't all primary space types listed? Maybe only important that not in secondary list primaryHVAC = { 'doas' => true, 'fan' => 'Variable', 'heat' => 'wahpv', 'cool' => 'wahpv', 'unitary' => true } secondaryHVAC = { 'fan' => 'Constant', 'heat' => 'Gas', 'cool' => 'SingleDX', 'unitary' => true } zoneHVAC = 'GSHP' chillerType = 'AirCooled' # set to none if chiller not used radiantChillerType = 'None' # set to none if not radiant system allHVAC = { 'primary' => primaryHVAC, 'secondary' => secondaryHVAC, 'zone' => zoneHVAC } ### END INPUTS ### START SORT ZONES = { 'standardBuildingTypeTest' => standardBuildingTypeTest, # ML Not used yet 'secondarySpaceTypeTest' => secondarySpaceTypeTest, 'ceilingReturnPlenumSpaceType' => ceilingReturnPlenumSpaceType } zonesSorted = OsLib_HVAC_zedg_gshp.sortZones(model, runner, ) zonesPrimary = zonesSorted['zonesPrimary'] zonesSecondary = zonesSorted['zonesSecondary'] zonesPlenum = zonesSorted['zonesPlenum'] zonesUnconditioned = zonesSorted['zonesUnconditioned'] ### END SORT ZONES ### START REPORT INITIAL CONDITIONS OsLib_HVAC_zedg_gshp.reportConditions(model, runner, 'initial') ### END REPORT INITIAL CONDITIONS ### START ASSIGN HVAC SCHEDULES = { 'primarySpaceType' => primarySpaceType, 'allHVAC' => allHVAC, 'remake_schedules' => remake_schedules } schedulesHVAC = OsLib_HVAC_zedg_gshp.assignHVACSchedules(model, runner, ) # assign schedules primary_SAT_schedule = schedulesHVAC['primary_sat'] building_HVAC_schedule = schedulesHVAC['hvac'] building_ventilation_schedule = schedulesHVAC['ventilation'] make_hot_water_plant = false unless schedulesHVAC['hot_water'].nil? hot_water_setpoint_schedule = schedulesHVAC['hot_water'] make_hot_water_plant = true end make_chilled_water_plant = false unless schedulesHVAC['chilled_water'].nil? chilled_water_setpoint_schedule = schedulesHVAC['chilled_water'] make_chilled_water_plant = true end make_radiant_hot_water_plant = false unless schedulesHVAC['radiant_hot_water'].nil? radiant_hot_water_setpoint_schedule = schedulesHVAC['radiant_hot_water'] make_radiant_hot_water_plant = true end make_radiant_chilled_water_plant = false unless schedulesHVAC['radiant_chilled_water'].nil? radiant_chilled_water_setpoint_schedule = schedulesHVAC['radiant_chilled_water'] make_radiant_chilled_water_plant = true end unless schedulesHVAC['hp_loop'].nil? heat_pump_loop_setpoint_schedule = schedulesHVAC['hp_loop'] end unless schedulesHVAC['hp_loop_cooling'].nil? heat_pump_loop_cooling_setpoint_schedule = schedulesHVAC['hp_loop_cooling'] end unless schedulesHVAC['hp_loop_heating'].nil? heat_pump_loop_heating_setpoint_schedule = schedulesHVAC['hp_loop_heating'] end unless schedulesHVAC['mean_radiant_heating'].nil? mean_radiant_heating_setpoint_schedule = schedulesHVAC['mean_radiant_heating'] end unless schedulesHVAC['mean_radiant_cooling'].nil? mean_radiant_cooling_setpoint_schedule = schedulesHVAC['mean_radiant_cooling'] end ### END ASSIGN HVAC SCHEDULES ### START REMOVE EQUIPMENT OsLib_HVAC_zedg_gshp.removeEquipment(model, runner) ### END REMOVE EQUIPMENT ### START CREATE NEW PLANTS # create new plants # hot water plant if make_hot_water_plant hot_water_plant = OsLib_HVAC_zedg_gshp.createHotWaterPlant(model, runner, hot_water_setpoint_schedule, 'Hot Water') end # chilled water plant if make_chilled_water_plant chilled_water_plant = OsLib_HVAC_zedg_gshp.createChilledWaterPlant(model, runner, chilled_water_setpoint_schedule, 'Chilled Water', chillerType) end # radiant hot water plant if make_radiant_hot_water_plant radiant_hot_water_plant = OsLib_HVAC_zedg_gshp.createHotWaterPlant(model, runner, radiant_hot_water_setpoint_schedule, 'Radiant Hot Water') end # chilled water plant if make_radiant_chilled_water_plant radiant_chilled_water_plant = OsLib_HVAC_zedg_gshp.createChilledWaterPlant(model, runner, radiant_chilled_water_setpoint_schedule, 'Radiant Chilled Water', radiantChillerType) end # condenser loop # need condenser loop if there is a water-cooled chiller or if there is a water source heat pump loop = {} ['zoneHVAC'] = zoneHVAC if (zoneHVAC == 'WSHP') || (zoneHVAC == 'GSHP') ['loop_setpoint_schedule'] = heat_pump_loop_setpoint_schedule ['cooling_setpoint_schedule'] = heat_pump_loop_cooling_setpoint_schedule ['heating_setpoint_schedule'] = heat_pump_loop_heating_setpoint_schedule end condenserLoops = OsLib_HVAC_zedg_gshp.createCondenserLoop(model, runner, ) unless condenserLoops['condenser_loop'].nil? condenser_loop = condenserLoops['condenser_loop'] end make_heat_pump_loop = false unless condenserLoops['heat_pump_loop'].nil? heat_pump_loop = condenserLoops['heat_pump_loop'] make_heat_pump_loop = true end ### END CREATE NEW PLANTS ### START CREATE PRIMARY ZONE EQUIPMENT = {} ['zonesPrimary'] = zonesPrimary ['zoneHVAC'] = zoneHVAC if make_hot_water_plant ['hot_water_plant'] = hot_water_plant end if make_chilled_water_plant ['chilled_water_plant'] = chilled_water_plant end if (zoneHVAC == 'WSHP') || (zoneHVAC == 'GSHP') ['heat_pump_loop'] = heat_pump_loop end if zoneHVAC == 'DualDuct' ['ventilation_schedule'] = building_ventilation_schedule end if zoneHVAC == 'Radiant' ['radiant_hot_water_plant'] = radiant_hot_water_plant ['radiant_chilled_water_plant'] = radiant_chilled_water_plant ['mean_radiant_heating_setpoint_schedule'] = mean_radiant_heating_setpoint_schedule ['mean_radiant_cooling_setpoint_schedule'] = mean_radiant_cooling_setpoint_schedule end OsLib_HVAC_zedg_gshp.createPrimaryZoneEquipment(model, runner, ) ### END CREATE PRIMARY ZONE EQUIPMENT ### START CREATE PRIMARY AIRLOOPS # populate inputs hash for create primary airloops method = {} ['zonesPrimary'] = zonesPrimary ['primaryHVAC'] = primaryHVAC ['zoneHVAC'] = zoneHVAC if primaryHVAC['doas'] ['hvac_schedule'] = building_ventilation_schedule ['ventilation_schedule'] = building_ventilation_schedule else # primary HVAC is multizone VAV if zoneHVAC == 'DualDuct' # primary system is a multizone VAV that cools only (primary system ventilation schedule is set to always off; hvac set to always on) ['hvac_schedule'] = model.alwaysOnDiscreteSchedule else # primary system is multizone VAV that cools and ventilates ['hvac_schedule'] = building_HVAC_schedule ['ventilation_schedule'] = building_ventilation_schedule end end ['primary_sat_schedule'] = primary_SAT_schedule if make_hot_water_plant ['hot_water_plant'] = hot_water_plant end if make_chilled_water_plant ['chilled_water_plant'] = chilled_water_plant end if make_heat_pump_loop ['heat_pump_loop'] = heat_pump_loop end primary_airloops = OsLib_HVAC_zedg_gshp.createPrimaryAirLoops(model, runner, ) ### END CREATE PRIMARY AIRLOOPS ### START CREATE SECONDARY AIRLOOPS # populate inputs hash for create primary airloops method # todo - set this up to take unitary system = {} ['zonesSecondary'] = zonesSecondary ['secondaryHVAC'] = secondaryHVAC ['hvac_schedule'] = building_HVAC_schedule ['ventilation_schedule'] = building_ventilation_schedule if make_hot_water_plant ['hot_water_plant'] = hot_water_plant end if make_chilled_water_plant ['chilled_water_plant'] = chilled_water_plant end if make_heat_pump_loop ['heat_pump_loop'] = heat_pump_loop end secondary_airloops = OsLib_HVAC_zedg_gshp.createSecondaryAirLoops(model, runner, ) ### END CREATE SECONDARY AIRLOOPS ### START ASSIGN PLENUMS = { 'zonesPrimary' => zonesPrimary, 'zonesPlenum' => zonesPlenum } zone_plenum_hash = OsLib_HVAC_zedg_gshp.validateAndAddPlenumZonesToSystem(model, runner, ) ### END ASSIGN PLENUMS # START ADD DCV = {} unless zoneHVAC == 'DualDuct' ['primary_airloops'] = primary_airloops end ['secondary_airloops'] = secondary_airloops ['allHVAC'] = allHVAC OsLib_HVAC_zedg_gshp.addDCV(model, runner, ) = {} ['secondary_airloops'] = secondary_airloops ['allHVAC'] = allHVAC OsLib_HVAC_zedg_gshp.addDCV(model, runner, ) # END ADD DCV # add in lifecycle costs expected_life = 25 years_until_costs_start = 0 costHVAC = costTotalHVACSystem lcc_mat = OpenStudio::Model::LifeCycleCost.createLifeCycleCost('HVAC System', model.getBuilding, costHVAC, 'CostPerEach', 'Construction', expected_life, years_until_costs_start).get # TODO: - add EMS # totod - test ems in run before commit plant_component_temperature_source = model.getPlantComponentTemperatureSources.first inlet_port = plant_component_temperature_source.inletModelObject.get # TODO: - confirm this exists schedule = plant_component_temperature_source.sourceTemperatureSchedule.get # todo - confirm this exists runner.registerInfo("Adding Plant Component Temperature Source EMS code for #{plant_component_temperature_source.name}") # add output variable outputVariable = OpenStudio::Model::OutputVariable.new('System Node Temperature', model) outputVariable.setReportingFrequency('Hourly') outputVariable.setKeyValue(plant_component_temperature_source.name.get) # add sensor sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'System Node Temperature') sensor.setKeyName(inlet_port.name.get) sensor.setName('Ground_HX_Inlet_Temp') # add actuator actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(schedule, 'Schedule:Constant', 'Schedule Value') actuator.setName('Ground_HX_Schedule_Actuator') # add program control_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) control_program.setName('Ground HX') control_program.addLine('SET Tin = Ground_HX_Inlet_Temp') control_program.addLine('IF Tin < 15.556') control_program.addLine('SET Tout = Tin + 5.556') control_program.addLine('ELSE') control_program.addLine('SET Tout = Tin - 5.556') control_program.addLine('ENDIF') control_program.addLine('SET Ground_HX_Schedule_Actuator = Tout') # add program calling manager pcm = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) pcm.setName('Ground HX') pcm.setCallingPoint('InsideHVACSystemIterationLoop') pcm.addProgram(control_program) ### START REPORT FINAL CONDITIONS OsLib_HVAC_zedg_gshp.reportConditions(model, runner, 'final') ### END REPORT FINAL CONDITIONS return true end |