Sha256: 98584d37c21ff4db06d10f60b08fb022d8b99648ddb1de81c53ed9dd226e3d2f
Contents?: true
Size: 612 Bytes
Versions: 13
Compression:
Stored size: 612 Bytes
Contents
class DEER # @!group Space # Determine the base infiltration rate at 75 PA. # In the MASControl2 rules, there is BDL code which # states that the value is 0.038 cfm/ft2 of perimeter wall area # at typical building pressures. # This translates to 0.338921 cfm/ft2 of perimeter wall area at # 75Pa using the assumptions from the DOE Prototypes. # # @return [Double] the baseline infiltration rate, in cfm/ft^2 # defaults to no infiltration. def space_infiltration_rate_75_pa(space) basic_infil_rate_cfm_per_ft2 = 0.338921 return basic_infil_rate_cfm_per_ft2 end end
Version data entries
13 entries across 13 versions & 1 rubygems