Class: OpenStudio::Model::AirTerminalSingleDuctUncontrolled

Inherits:
Object
  • Object
show all
Defined in:
lib/openstudio-standards/hvac_sizing/Siz.AirTermSnglDuctUncontrolled.rb

Overview

open the class to add methods to return sizing values

Instance Method Summary collapse

Instance Method Details

#applySizingValuesObject

Takes the values calculated by the EnergyPlus sizing routines and puts them into this object model in place of the autosized fields. Must have previously completed a run with sql output for this to work.



13
14
15
16
17
18
19
20
# File 'lib/openstudio-standards/hvac_sizing/Siz.AirTermSnglDuctUncontrolled.rb', line 13

def applySizingValues

  maximum_air_flow_rate = self.autosizedMaximumAirFlowRate
  if maximum_air_flow_rate.is_initialized
    self.setMaximumAirFlowRate(maximum_air_flow_rate.get) 
  end
      
end

#autosizeObject

Sets all auto-sizeable fields to autosize



6
7
8
# File 'lib/openstudio-standards/hvac_sizing/Siz.AirTermSnglDuctUncontrolled.rb', line 6

def autosize
  self.autosizeMaximumAirFlowRate
end

#autosizedMaximumAirFlowRateObject

returns the autosized maximum air flow rate as optional double



23
24
25
26
27
# File 'lib/openstudio-standards/hvac_sizing/Siz.AirTermSnglDuctUncontrolled.rb', line 23

def autosizedMaximumAirFlowRate

  return self.model.getAutosizedValue(self, 'Design Size Maximum Air Flow Rate', 'm3/s')
  
end