Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Building Energy Standards Energy Recovery Data Update #1841

Merged
merged 14 commits into from
Dec 19, 2024
Merged
2 changes: 1 addition & 1 deletion data/standards/manage_OpenStudio_Standards.rb
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def unique_properties(sheet_name)
when 'climate_zones'
['name', 'standard']
when 'energy_recovery'
['template', 'climate_zone', 'under_8000_hours', 'nontransient_dwelling', 'enthalpy_recovery_ratio_design_conditions']
['climate_zone', 'under_8000_hours', 'nontransient_dwelling', 'percent_oa_0_to_10', 'percent_oa_10_to_20 ', 'percent_oa_20_to_30', 'percent_oa_30_to_40', 'percent_oa_40_to_50', 'percent_oa_50_to_60', 'percent_oa_60_to_70', 'percent_oa_70_to_80', 'percent_oa_greater_than_80', 'design_conditions', 'energy_recovery_effectiveness', 'enthalpy_recovery_ratio', 'sensible_energy_recovery_ratio']
when 'space_types_lighting_control'
['template', 'building_type', 'space_type']
when 'prm_hvac_bldg_type'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1594,9 +1594,9 @@ def model_apply_prototype_hvac_efficiency_adjustments(model)
oa_cfm_per_ft2 = 0.0578940512546562
oa_m3_per_m2 = OpenStudio.convert(OpenStudio.convert(oa_cfm_per_ft2, 'cfm', 'm^3/s').get, '1/ft^2', '1/m^2').get
if has_erv
model_add_residential_erv(model, zone, oa_m3_per_m2)
model_add_residential_erv(model, [zone], oa_m3_per_m2)
else
model_add_residential_ventilator(model, zone, oa_m3_per_m2)
model_add_residential_ventilator(model, [zone], oa_m3_per_m2)
end

# Shut-off air loop level OA intake
Expand Down

Large diffs are not rendered by default.

Loading