dragonfly-schema 1.12.5__tar.gz → 1.12.7__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.
Files changed (28) hide show
  1. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/PKG-INFO +1 -1
  2. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/model.py +23 -0
  3. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema.egg-info/PKG-INFO +1 -1
  4. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/.coveragerc +0 -0
  5. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/CODE_OF_CONDUCT.md +0 -0
  6. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/CONTRIBUTING.md +0 -0
  7. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/LICENSE +0 -0
  8. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/MANIFEST.in +0 -0
  9. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/README.md +0 -0
  10. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dev-requirements.txt +0 -0
  11. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/docs.py +0 -0
  12. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/__init__.py +0 -0
  13. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/energy/__init__.py +0 -0
  14. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/energy/properties.py +0 -0
  15. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/radiance/__init__.py +0 -0
  16. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/radiance/gridpar.py +0 -0
  17. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/radiance/properties.py +0 -0
  18. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/roof.py +0 -0
  19. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/shading_parameter.py +0 -0
  20. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/skylight_parameter.py +0 -0
  21. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema/window_parameter.py +0 -0
  22. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema.egg-info/SOURCES.txt +0 -0
  23. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema.egg-info/dependency_links.txt +0 -0
  24. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema.egg-info/requires.txt +0 -0
  25. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/dragonfly_schema.egg-info/top_level.txt +0 -0
  26. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/requirements.txt +0 -0
  27. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/setup.cfg +0 -0
  28. {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.7}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dragonfly-schema
3
- Version: 1.12.5
3
+ Version: 1.12.7
4
4
  Summary: Dragonfly Data-Model Objects
5
5
  Home-page: https://github.com/ladybug-tools/dragonfly-schema
6
6
  Author: Ladybug Tools
@@ -79,6 +79,22 @@ class Room2D(IDdBaseModel):
79
79
  'to the outdoors.'
80
80
  )
81
81
 
82
+ has_floor: bool = Field(
83
+ True,
84
+ description='A boolean for whether the room has a Floor (True) or an '
85
+ 'AirBoundary (False). If False, this property will only be meaningful if the '
86
+ 'model is translated to Honeybee with ceiling adjacency solved and there '
87
+ 'is a Room2D below this one with a has_ceiling property set to False.'
88
+ )
89
+
90
+ has_ceiling: bool = Field(
91
+ True,
92
+ description='A boolean for whether the room has a RoofCeiling (True) or an '
93
+ 'AirBoundary (False). If False, this property will only be meaningful if the '
94
+ 'model is translated to Honeybee with ceiling adjacency solved and there '
95
+ 'is a Room2D above this one with a has_floor property set to False.'
96
+ )
97
+
82
98
  boundary_conditions: List[
83
99
  Union[Ground, Outdoors, Surface, Adiabatic, OtherSideTemperature]
84
100
  ] = Field(
@@ -220,6 +236,13 @@ class Story(IDdBaseModel):
220
236
  'multiplier is 1. If None, all Room2D ceilings will be flat.'
221
237
  )
222
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
+
223
246
  properties: StoryPropertiesAbridged = Field(
224
247
  ...,
225
248
  description='Extension properties for particular simulation engines '
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dragonfly-schema
3
- Version: 1.12.5
3
+ Version: 1.12.7
4
4
  Summary: Dragonfly Data-Model Objects
5
5
  Home-page: https://github.com/ladybug-tools/dragonfly-schema
6
6
  Author: Ladybug Tools