Skip to content

Commit cd09942

Browse files
committed
fix(story): Add a new property for whether a Story is a plenum
1 parent c87d00c commit cd09942

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dragonfly_schema/model.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,13 @@ class Story(IDdBaseModel):
236236
'multiplier is 1. If None, all Room2D ceilings will be flat.'
237237
)
238238

239+
is_plenum: bool = Field(
240+
False,
241+
description='A boolean noting whether the Room2Ds of the Story represent '
242+
'plenums. If True, all Room2Ds in the Story are translated to 3D with a True '
243+
'exclude_floor_area property.'
244+
)
245+
239246
properties: StoryPropertiesAbridged = Field(
240247
...,
241248
description='Extension properties for particular simulation engines '

0 commit comments

Comments
 (0)