dragonfly-schema 1.12.5__tar.gz → 1.12.6__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.12.5 → dragonfly_schema-1.12.6}/PKG-INFO +1 -1
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/model.py +16 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema.egg-info/PKG-INFO +1 -1
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/.coveragerc +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/CODE_OF_CONDUCT.md +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/CONTRIBUTING.md +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/LICENSE +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/MANIFEST.in +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/README.md +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dev-requirements.txt +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/docs.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/__init__.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/energy/__init__.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/energy/properties.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/radiance/__init__.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/radiance/gridpar.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/radiance/properties.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/roof.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/shading_parameter.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/skylight_parameter.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema/window_parameter.py +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema.egg-info/SOURCES.txt +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema.egg-info/dependency_links.txt +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema.egg-info/requires.txt +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/dragonfly_schema.egg-info/top_level.txt +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/requirements.txt +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/setup.cfg +0 -0
- {dragonfly_schema-1.12.5 → dragonfly_schema-1.12.6}/setup.py +0 -0
@@ -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(
|
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.12.5 → dragonfly_schema-1.12.6}/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
|