Sha256: 189c13bad21eab305a0400474fc6c87c60aa0514eb42a09842bc8bcd0200f44e
Contents?: true
Size: 823 Bytes
Versions: 49
Compression:
Stored size: 823 Bytes
Contents
# open the class to add methods to return sizing values class OpenStudio::Model::DistrictHeating # Sets all auto-sizeable fields to autosize def autosize self.autosizeNominalCapacity end # 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. def applySizingValues nominal_capacity = self.autosizedMaximumFlowRate if nominal_capacity.is_initialized self.setMaximumFlowRate(nominal_capacity.get) end end # returns the autosized maximum flow rate as an optional double def autosizedNominalCapacity return self.model.getAutosizedValue(self, 'Design Size Nominal Capacity', 'W') end end
Version data entries
49 entries across 49 versions & 1 rubygems