Sha256: 579d589707ec4395d24a7526074ebe506c8e41e13807d627f6b9fd795bb80261

Contents?: true

Size: 868 Bytes

Versions: 3

Compression:

Stored size: 868 Bytes

Contents

class ASHRAE9012016 < ASHRAE901
  # @!group elevators

  # Determines the percentage of the elevator cab
  # lighting that is incandescent.  The remainder
  # is assumed to be LED.  Defaults to 0% incandescent
  # (100% LED), representing newer elevators.
  def model_elevator_lighting_pct_incandescent(model)
    pct_incandescent = 0.0 # 100% LED
    return pct_incandescent
  end

  # Determines the power of the elevator ventilation fan.
  # 90.1-2016 has a requirement
  # for ventilation fan efficiency.
  # @return [Double] the ventilaton fan power (W)
  def model_elevator_fan_pwr(model, vent_rate_cfm)
    vent_pwr_per_flow_w_per_cfm = 0.33
    vent_pwr_w = vent_pwr_per_flow_w_per_cfm * vent_rate_cfm
    # addendum 90.1-2007 aj has requirement on efficiency
    vent_pwr_w = vent_pwr_w * 0.29 / 0.70

    return vent_pwr_w
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openstudio-standards-0.2.14 lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model.elevators.rb
openstudio-standards-0.2.13 lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model.elevators.rb
openstudio-standards-0.2.13.rc3 lib/openstudio-standards/prototypes/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.Model.elevators.rb