@@ -4219,7 +4219,10 @@ def model_add_window_ac(model, thermal_zones):
4219
4219
model , name = '{} Window AC Cooling Coil' .format (zone_name ),
4220
4220
type = 'Window AC' , cop = cop )
4221
4221
clg_coil .setRatedSensibleHeatRatio (shr )
4222
- clg_coil .setRatedEvaporatorFanPowerPerVolumeFlowRate2017 (773.3 )
4222
+ if model .version () < openstudio .VersionString ('3.5.0' ):
4223
+ clg_coil .setRatedEvaporatorFanPowerPerVolumeFlowRate (773.3 )
4224
+ else :
4225
+ clg_coil .setRatedEvaporatorFanPowerPerVolumeFlowRate2017 (773.3 )
4223
4226
clg_coil .setEvaporativeCondenserEffectiveness (0.9 )
4224
4227
clg_coil .setMaximumOutdoorDryBulbTemperatureForCrankcaseHeaterOperation (10 )
4225
4228
clg_coil .setBasinHeaterSetpointTemperature (2 )
@@ -4326,8 +4329,11 @@ def model_add_furnace_central_ac(
4326
4329
type = 'Residential Central AC' )
4327
4330
clg_coil .setRatedSensibleHeatRatio (shr )
4328
4331
clg_coil .setRatedCOP (eer_to_cop_no_fan (eer ))
4329
- clg_coil .setRatedEvaporatorFanPowerPerVolumeFlowRate2017 (
4330
- ac_w_per_cfm / FLOW_RATE .to_unit ([1.0 ], 'm3/s' , 'cfm' )[0 ])
4332
+ ac_w_per_mps = ac_w_per_cfm / FLOW_RATE .to_unit ([1.0 ], 'm3/s' , 'cfm' )[0 ]
4333
+ if model .version () < openstudio .VersionString ('3.5.0' ):
4334
+ clg_coil .setRatedEvaporatorFanPowerPerVolumeFlowRate (ac_w_per_mps )
4335
+ else :
4336
+ clg_coil .setRatedEvaporatorFanPowerPerVolumeFlowRate2017 (ac_w_per_mps )
4331
4337
clg_coil .setNominalTimeForCondensateRemovalToBegin (1000.0 )
4332
4338
clg_coil .setRatioOfInitialMoistureEvaporationRateAndSteadyStateLatentCapacity (1.5 )
4333
4339
clg_coil .setMaximumCyclingRate (3.0 )
@@ -4478,8 +4484,11 @@ def model_add_central_air_source_heat_pump(
4478
4484
model , name = '{} Cooling Coil' .format (loop_name ),
4479
4485
type = 'Residential Central ASHP' , cop = cop )
4480
4486
clg_coil .setRatedSensibleHeatRatio (shr )
4481
- clg_coil .setRatedEvaporatorFanPowerPerVolumeFlowRate2017 (
4482
- ac_w_per_cfm / FLOW_RATE .to_unit ([1.0 ], 'm3/s' , 'cfm' )[0 ])
4487
+ ac_w_per_mps = ac_w_per_cfm / FLOW_RATE .to_unit ([1.0 ], 'm3/s' , 'cfm' )[0 ]
4488
+ if model .version () < openstudio .VersionString ('3.5.0' ):
4489
+ clg_coil .setRatedEvaporatorFanPowerPerVolumeFlowRate (ac_w_per_mps )
4490
+ else :
4491
+ clg_coil .setRatedEvaporatorFanPowerPerVolumeFlowRate2017 (ac_w_per_mps )
4483
4492
clg_coil .setNominalTimeForCondensateRemovalToBegin (1000.0 )
4484
4493
clg_coil .setRatioOfInitialMoistureEvaporationRateAndSteadyStateLatentCapacity (1.5 )
4485
4494
clg_coil .setMaximumCyclingRate (3.0 )
0 commit comments