We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c87d00c commit cd09942Copy full SHA for cd09942
dragonfly_schema/model.py
@@ -236,6 +236,13 @@ class Story(IDdBaseModel):
236
'multiplier is 1. If None, all Room2D ceilings will be flat.'
237
)
238
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
+
246
properties: StoryPropertiesAbridged = Field(
247
...,
248
description='Extension properties for particular simulation engines '
0 commit comments