Skip to content

Commit

Permalink
fix(story): Add a new property for whether a Story is a plenum
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Jan 23, 2025
1 parent c87d00c commit cd09942
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dragonfly_schema/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,13 @@ class Story(IDdBaseModel):
'multiplier is 1. If None, all Room2D ceilings will be flat.'
)

is_plenum: bool = Field(
False,
description='A boolean noting whether the Room2Ds of the Story represent '
'plenums. If True, all Room2Ds in the Story are translated to 3D with a True '
'exclude_floor_area property.'
)

properties: StoryPropertiesAbridged = Field(
...,
description='Extension properties for particular simulation engines '
Expand Down

0 comments on commit cd09942

Please sign in to comment.