dragonfly-schema 1.14.0__tar.gz → 1.15.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.14.0 → dragonfly_schema-1.15.0}/PKG-INFO +2 -2
- dragonfly_schema-1.15.0/dragonfly_schema/doe2/__init__.py +0 -0
- dragonfly_schema-1.15.0/dragonfly_schema/doe2/properties.py +64 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/model.py +18 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema.egg-info/PKG-INFO +2 -2
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema.egg-info/SOURCES.txt +2 -0
- dragonfly_schema-1.15.0/dragonfly_schema.egg-info/requires.txt +1 -0
- dragonfly_schema-1.15.0/requirements.txt +1 -0
- dragonfly_schema-1.14.0/dragonfly_schema.egg-info/requires.txt +0 -1
- dragonfly_schema-1.14.0/requirements.txt +0 -1
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/.coveragerc +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/CODE_OF_CONDUCT.md +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/CONTRIBUTING.md +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/LICENSE +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/MANIFEST.in +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/README.md +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dev-requirements.txt +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/docs.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/__init__.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/comparison/__init__.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/comparison/properties.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/energy/__init__.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/energy/properties.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/radiance/__init__.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/radiance/gridpar.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/radiance/properties.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/roof.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/shading_parameter.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/skylight_parameter.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/window_parameter.py +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema.egg-info/dependency_links.txt +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema.egg-info/top_level.txt +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/setup.cfg +0 -0
- {dragonfly_schema-1.14.0 → dragonfly_schema-1.15.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: dragonfly-schema
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.15.0
|
4
4
|
Summary: Dragonfly Data-Model Objects
|
5
5
|
Home-page: https://github.com/ladybug-tools/dragonfly-schema
|
6
6
|
Author: Ladybug Tools
|
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
12
12
|
Description-Content-Type: text/markdown
|
13
13
|
License-File: LICENSE
|
14
|
-
Requires-Dist: honeybee-schema==1.
|
14
|
+
Requires-Dist: honeybee-schema==1.59.0
|
15
15
|
|
16
16
|
[](https://travis-ci.com/ladybug-tools/dragonfly-schema)
|
17
17
|
[](https://coveralls.io/github/ladybug-tools/dragonfly-schema)
|
File without changes
|
@@ -0,0 +1,64 @@
|
|
1
|
+
"""Model DOE-2 properties."""
|
2
|
+
from pydantic import Field, constr
|
3
|
+
from typing import Union
|
4
|
+
|
5
|
+
from honeybee_schema._base import NoExtraBaseModel
|
6
|
+
from honeybee_schema.altnumber import Autocalculate
|
7
|
+
|
8
|
+
|
9
|
+
class Room2DDoe2Properties(NoExtraBaseModel):
|
10
|
+
|
11
|
+
type: constr(regex='^Room2DDoe2Properties$') = \
|
12
|
+
'Room2DDoe2Properties'
|
13
|
+
|
14
|
+
assigned_flow: Union[Autocalculate, float] = Field(
|
15
|
+
Autocalculate(),
|
16
|
+
ge=0,
|
17
|
+
description='A number for the design supply air flow rate for the zone '
|
18
|
+
'the Room is assigned to (cfm). This establishes the minimum allowed '
|
19
|
+
'design air flow. Note that the actual design flow may be larger. If '
|
20
|
+
'Autocalculate, this parameter will not be written into the INP.'
|
21
|
+
)
|
22
|
+
|
23
|
+
flow_per_area: Union[Autocalculate, float] = Field(
|
24
|
+
Autocalculate(),
|
25
|
+
ge=0,
|
26
|
+
description='A number for the design supply air flow rate to the zone '
|
27
|
+
'per unit floor area (cfm/ft2). If Autocalculate, this parameter will '
|
28
|
+
'not be written into the INP.'
|
29
|
+
)
|
30
|
+
|
31
|
+
min_flow_ratio: Union[Autocalculate, float] = Field(
|
32
|
+
Autocalculate(),
|
33
|
+
ge=0,
|
34
|
+
le=1,
|
35
|
+
description='A number between 0 and 1 for the minimum allowable zone '
|
36
|
+
'air supply flow rate, expressed as a fraction of design flow rate. Applicable '
|
37
|
+
'to variable-volume type systems only. If Autocalculate, this parameter will '
|
38
|
+
'not be written into the INP.'
|
39
|
+
)
|
40
|
+
|
41
|
+
min_flow_per_area: Union[Autocalculate, float] = Field(
|
42
|
+
Autocalculate(),
|
43
|
+
ge=0,
|
44
|
+
description='A number for the minimum air flow per square foot of '
|
45
|
+
'floor area (cfm/ft2). This is an alternative way of specifying the '
|
46
|
+
'min_flow_ratio. If Autocalculate, this parameter will not be written '
|
47
|
+
'into the INP.'
|
48
|
+
)
|
49
|
+
|
50
|
+
hmax_flow_ratio: Union[Autocalculate, float] = Field(
|
51
|
+
Autocalculate(),
|
52
|
+
ge=0,
|
53
|
+
le=1,
|
54
|
+
description='A number between 0 and 1 for the ratio of the maximum (or fixed) '
|
55
|
+
'heating airflow to the cooling airflow. The specific meaning varies according '
|
56
|
+
'to the type of zone terminal. If Autocalculate, this parameter will '
|
57
|
+
'not be written into the INP.'
|
58
|
+
)
|
59
|
+
|
60
|
+
|
61
|
+
class ModelDoe2Properties(NoExtraBaseModel):
|
62
|
+
|
63
|
+
type: constr(regex='^ModelDoe2Properties$') = \
|
64
|
+
'ModelDoe2Properties'
|
@@ -22,6 +22,7 @@ from .energy.properties import Room2DEnergyPropertiesAbridged, \
|
|
22
22
|
from .radiance.properties import Room2DRadiancePropertiesAbridged, \
|
23
23
|
StoryRadiancePropertiesAbridged, BuildingRadiancePropertiesAbridged, \
|
24
24
|
ContextShadeRadiancePropertiesAbridged, ModelRadianceProperties
|
25
|
+
from .doe2.properties import Room2DDoe2Properties, ModelDoe2Properties
|
25
26
|
from .comparison.properties import Room2DComparisonProperties, ModelComparisonProperties
|
26
27
|
|
27
28
|
|
@@ -37,6 +38,10 @@ class Room2DPropertiesAbridged(BaseModel):
|
|
37
38
|
default=None
|
38
39
|
)
|
39
40
|
|
41
|
+
doe2: Room2DDoe2Properties = Field(
|
42
|
+
default=None
|
43
|
+
)
|
44
|
+
|
40
45
|
comparison: Room2DComparisonProperties = Field(
|
41
46
|
default=None
|
42
47
|
)
|
@@ -123,6 +128,15 @@ class Room2D(IDdBaseModel):
|
|
123
128
|
'Setting this to zero indicates that the room has no floor plenum.'
|
124
129
|
)
|
125
130
|
|
131
|
+
zone: str = Field(
|
132
|
+
default=None,
|
133
|
+
description='Text string for for the zone identifier to which this Room2D '
|
134
|
+
' belongs. Room2Ds sharing the same zone identifier are considered part of the '
|
135
|
+
'same zone in a Building. If the zone identifier has not been specified, it will '
|
136
|
+
'be the same as the Room2D identifier in the destination engine. Note that this '
|
137
|
+
'property has no character restrictions.'
|
138
|
+
)
|
139
|
+
|
126
140
|
boundary_conditions: List[
|
127
141
|
Union[Ground, Outdoors, Surface, Adiabatic, OtherSideTemperature]
|
128
142
|
] = Field(
|
@@ -403,6 +417,10 @@ class ModelProperties(BaseModel):
|
|
403
417
|
default=None
|
404
418
|
)
|
405
419
|
|
420
|
+
doe2: ModelDoe2Properties = Field(
|
421
|
+
default=None
|
422
|
+
)
|
423
|
+
|
406
424
|
comparison: ModelComparisonProperties = Field(
|
407
425
|
default=None
|
408
426
|
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: dragonfly-schema
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.15.0
|
4
4
|
Summary: Dragonfly Data-Model Objects
|
5
5
|
Home-page: https://github.com/ladybug-tools/dragonfly-schema
|
6
6
|
Author: Ladybug Tools
|
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
12
12
|
Description-Content-Type: text/markdown
|
13
13
|
License-File: LICENSE
|
14
|
-
Requires-Dist: honeybee-schema==1.
|
14
|
+
Requires-Dist: honeybee-schema==1.59.0
|
15
15
|
|
16
16
|
[](https://travis-ci.com/ladybug-tools/dragonfly-schema)
|
17
17
|
[](https://coveralls.io/github/ladybug-tools/dragonfly-schema)
|
@@ -22,6 +22,8 @@ dragonfly_schema.egg-info/requires.txt
|
|
22
22
|
dragonfly_schema.egg-info/top_level.txt
|
23
23
|
dragonfly_schema/comparison/__init__.py
|
24
24
|
dragonfly_schema/comparison/properties.py
|
25
|
+
dragonfly_schema/doe2/__init__.py
|
26
|
+
dragonfly_schema/doe2/properties.py
|
25
27
|
dragonfly_schema/energy/__init__.py
|
26
28
|
dragonfly_schema/energy/properties.py
|
27
29
|
dragonfly_schema/radiance/__init__.py
|
@@ -0,0 +1 @@
|
|
1
|
+
honeybee-schema==1.59.0
|
@@ -0,0 +1 @@
|
|
1
|
+
honeybee-schema==1.59.0
|
@@ -1 +0,0 @@
|
|
1
|
-
honeybee-schema==1.58.6
|
@@ -1 +0,0 @@
|
|
1
|
-
honeybee-schema==1.58.6
|
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.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema/comparison/properties.py
RENAMED
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.14.0 → dragonfly_schema-1.15.0}/dragonfly_schema.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|