lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb in openstudio-standards-0.2.6 vs lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb in openstudio-standards-0.2.7
- old
+ new
@@ -2162,12 +2162,11 @@
end
return has_erv
end
- # Set the VAV damper control to single maximum or
- # dual maximum control depending on the standard.
+ # Set the VAV damper control to single maximum or dual maximum control depending on the standard.
#
# @return [Bool] Returns true if successful, false if not
# @todo see if this impacts the sizing run.
def air_loop_hvac_apply_vav_damper_action(air_loop_hvac)
damper_action = air_loop_hvac_vav_damper_action(air_loop_hvac)
@@ -2185,12 +2184,11 @@
else
'ReverseWithLimits'
end
end
- # Set the control for any VAV reheat terminals
- # on this airloop.
+ # Set the control for any VAV reheat terminals on this airloop.
control_type_set = false
air_loop_hvac.demandComponents.each do |equip|
if equip.to_AirTerminalSingleDuctVAVReheat.is_initialized
term = equip.to_AirTerminalSingleDuctVAVReheat.get
# Dual maximum only applies to terminals with HW reheat coils
@@ -2212,12 +2210,12 @@
end
return true
end
- # Determine whether the VAV damper control is single maximum or
- # dual maximum control. Defults to 90.1-2007.
+ # Determine whether the VAV damper control is single maximum or dual maximum control.
+ # Defaults to 90.1-2007.
#
# @return [String] the damper control type: Single Maximum, Dual Maximum
def air_loop_hvac_vav_damper_action(air_loop_hvac)
damper_action = 'Dual Maximum'
return damper_action
@@ -2232,11 +2230,10 @@
motorized_oa_damper_required = true
OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.AirLoopHVAC', "For #{air_loop_hvac.name}: always has a damper, the minimum OA schedule is the same as airloop availability schedule.")
return motorized_oa_damper_required
end
- # If the system has an economizer, it must have
- # a motorized damper.
+ # If the system has an economizer, it must have a motorized damper.
if air_loop_hvac_economizer?(air_loop_hvac)
motorized_oa_damper_required = true
OpenStudio.logFree(OpenStudio::Info, 'openstudio.standards.AirLoopHVAC', "For #{air_loop_hvac.name}: Because the system has an economizer, it requires a motorized OA damper.")
return motorized_oa_damper_required
end