Skip to content

Commit 489da68

Browse files
committed
map common floor-area type
1 parent c94cb54 commit 489da68

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- BuildingSync to OpenStudio Translation for MLOD 200
99
- Add action for building the documentation
1010
- Fix purge measures method to only remove measures with SKIP argument set to True
11+
- Map "Common" BuildingSync floor area type
1112

1213
## Version 0.2.0
1314

lib/buildingsync/model_articulation/spatial_element.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def read_floor_areas(parent_total_floor_area)
8989
@conditioned_floor_area_heated_cooled = OpenStudio.convert(validate_positive_number_excluding_zero('@heated_and_cooled_floor_area', floor_area), 'ft^2', 'm^2').get
9090
elsif floor_area_type == 'Footprint'
9191
@footprint_floor_area = OpenStudio.convert(validate_positive_number_excluding_zero('@footprint_floor_area', floor_area), 'ft^2', 'm^2').get
92-
elsif floor_area_type == 'Conditioned'
92+
elsif floor_area_type == 'Conditioned' || floor_area_type == 'Common'
9393
@conditioned_floor_area_heated_cooled = OpenStudio.convert(validate_positive_number_excluding_zero('@conditioned_floor_area_heated_cooled', floor_area), 'ft^2', 'm^2').get
9494
elsif floor_area_type == 'Heated Only'
9595
@conditioned_floor_area_heated_only = OpenStudio.convert(validate_positive_number_excluding_zero('@heated_only_floor_area', floor_area), 'ft^2', 'm^2').get

0 commit comments

Comments
 (0)