dragonfly-schema 1.11.5__tar.gz → 1.12.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/PKG-INFO +1 -1
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/model.py +18 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema.egg-info/PKG-INFO +1 -1
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/.coveragerc +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/CODE_OF_CONDUCT.md +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/CONTRIBUTING.md +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/LICENSE +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/MANIFEST.in +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/README.md +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dev-requirements.txt +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/docs.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/__init__.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/energy/__init__.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/energy/properties.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/radiance/__init__.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/radiance/gridpar.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/radiance/properties.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/roof.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/shading_parameter.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/skylight_parameter.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema/window_parameter.py +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema.egg-info/SOURCES.txt +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema.egg-info/dependency_links.txt +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema.egg-info/requires.txt +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema.egg-info/top_level.txt +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/requirements.txt +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/setup.cfg +0 -0
- {dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/setup.py +0 -0
@@ -272,6 +272,24 @@ class Building(IDdBaseModel):
|
|
272
272
|
'Room.story may reference. (Default: None).'
|
273
273
|
)
|
274
274
|
|
275
|
+
roof: RoofSpecification = Field(
|
276
|
+
default=None,
|
277
|
+
description='An optional RoofSpecification object that provides an '
|
278
|
+
'alternative way to describe roof geometry over rooms (instead of '
|
279
|
+
'specifying roofs on each story). If trying to decide between the two, '
|
280
|
+
'specifying geometry on each story is closer to how dragonfly natively '
|
281
|
+
'works with roof geometry as it relates to rooms. However, when it is '
|
282
|
+
'unknown which roof geometries correspond to which stories, this Building-level '
|
283
|
+
'attribute may be used and each roof geometry will automatically be added '
|
284
|
+
'to the best Story in the Building upon serialization to Python. This '
|
285
|
+
'automatic assignment will happen by checking for overlaps between the '
|
286
|
+
'Story Room2Ds and the Roof geometry in plan. When a given roof geometry '
|
287
|
+
'overlaps with several Stories, the top-most Story will get the roof geometry '
|
288
|
+
'assigned to it unless this top Story has a floor_height above the roof '
|
289
|
+
'geometry, in which case the next highest story will be checked until a '
|
290
|
+
'compatible one is found.'
|
291
|
+
)
|
292
|
+
|
275
293
|
properties: BuildingPropertiesAbridged = Field(
|
276
294
|
...,
|
277
295
|
description='Extension properties for particular simulation engines '
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{dragonfly-schema-1.11.5 → dragonfly-schema-1.12.0}/dragonfly_schema.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|