honeybee-schema 1.57.0__py2.py3-none-any.whl → 1.57.2__py2.py3-none-any.whl
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.
- honeybee_schema/energy/simulation.py +12 -1
- honeybee_schema/{project_info.py → projectinfo.py} +6 -3
- {honeybee_schema-1.57.0.dist-info → honeybee_schema-1.57.2.dist-info}/METADATA +1 -1
- {honeybee_schema-1.57.0.dist-info → honeybee_schema-1.57.2.dist-info}/RECORD +8 -8
- {honeybee_schema-1.57.0.dist-info → honeybee_schema-1.57.2.dist-info}/LICENSE +0 -0
- {honeybee_schema-1.57.0.dist-info → honeybee_schema-1.57.2.dist-info}/WHEEL +0 -0
- {honeybee_schema-1.57.0.dist-info → honeybee_schema-1.57.2.dist-info}/entry_points.txt +0 -0
- {honeybee_schema-1.57.0.dist-info → honeybee_schema-1.57.2.dist-info}/top_level.txt +0 -0
@@ -341,7 +341,7 @@ class SizingParameter(NoExtraBaseModel):
|
|
341
341
|
'the design days on this sizing parameter object.'
|
342
342
|
)
|
343
343
|
|
344
|
-
building_type:
|
344
|
+
building_type: str = Field(
|
345
345
|
default=None,
|
346
346
|
description='Text for the building type to be used in the efficiency_standard. '
|
347
347
|
'If the type is not recognized or is None, it will be assumed that the building '
|
@@ -353,6 +353,17 @@ class SizingParameter(NoExtraBaseModel):
|
|
353
353
|
'Laboratory, Courthouse.'
|
354
354
|
)
|
355
355
|
|
356
|
+
bypass_efficiency_sizing: bool = Field(
|
357
|
+
default=False,
|
358
|
+
description='A boolean to indicate whether the efficiency standard should '
|
359
|
+
'trigger an sizing run that sets the efficiencies of all HVAC equipment in '
|
360
|
+
'the Model (False) or the standard should only be written into the OSM and '
|
361
|
+
'the sizing run should be bypassed (True). Bypassing the sizing run is useful '
|
362
|
+
'when you only want to check that the overall HVAC system architecture is '
|
363
|
+
'correct and you do not want to wait the extra time that it takes to run the '
|
364
|
+
'sizing calculation.'
|
365
|
+
)
|
366
|
+
|
356
367
|
|
357
368
|
class TerrianTypes(str, Enum):
|
358
369
|
ocean = 'Ocean'
|
@@ -1,7 +1,8 @@
|
|
1
1
|
"""Schema for project information."""
|
2
2
|
from pydantic import BaseModel, Field, constr, AnyUrl
|
3
|
-
from typing import List
|
3
|
+
from typing import List, Union
|
4
4
|
|
5
|
+
from .altnumber import Autocalculate
|
5
6
|
from .energy.simulation import EfficiencyStandards, ClimateZones, BuildingTypes
|
6
7
|
|
7
8
|
|
@@ -25,8 +26,10 @@ class Location(BaseModel):
|
|
25
26
|
description='Location longitude between -180 (west) and 180 (east) (Default: 0).'
|
26
27
|
)
|
27
28
|
|
28
|
-
time_zone:
|
29
|
-
|
29
|
+
time_zone: Union[Autocalculate, int] = Field(
|
30
|
+
Autocalculate(),
|
31
|
+
ge=-12,
|
32
|
+
le=14,
|
30
33
|
description='Time zone between -12 hours (west) and +14 hours (east). '
|
31
34
|
'If None, the time zone will be an estimated integer value derived from '
|
32
35
|
'the longitude in accordance with solar time.'
|
@@ -7,7 +7,7 @@ honeybee_schema/cli.py,sha256=QhhgNsgz55FBmJuHrg16nQoEmzD9ZIL6ugD2lofQqMg,4387
|
|
7
7
|
honeybee_schema/comparison.py,sha256=I2CCDmPLl-awBhGkSVd8b9yZncn8u2wUE-wBePrbB3c,8006
|
8
8
|
honeybee_schema/geometry.py,sha256=7oJQXdYYd3qECmIlKh7-XcwCibs1c2eLAS_SItJ7N10,4203
|
9
9
|
honeybee_schema/model.py,sha256=fAxHgQOQAzIM_6kV8KYayIBL-K_ST_yJWwUeyhgVmY0,13994
|
10
|
-
honeybee_schema/
|
10
|
+
honeybee_schema/projectinfo.py,sha256=Jz9FYNSpWS282o4uNQxcL1Mo2J-fKT0gqBckk5h-Cio,2759
|
11
11
|
honeybee_schema/validation.py,sha256=7EutKXshjqCffXCDOBxIzxpKQU_Nio1_SbLidPB_-p4,7060
|
12
12
|
honeybee_schema/energy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
13
|
honeybee_schema/energy/_base.py,sha256=drAW-DguuwB2ahBGG1lboGcfJKJESnXjyAWicMtjQ-U,2305
|
@@ -24,7 +24,7 @@ honeybee_schema/energy/programtype.py,sha256=1keIS_BX8pKSUtjE4PJ1PP-Tbs5KQVwtsQ0
|
|
24
24
|
honeybee_schema/energy/properties.py,sha256=W8gBBGKKSnsKivG38QEe07vHk3zhwZ7sqVeNU5ewJV0,15074
|
25
25
|
honeybee_schema/energy/schedule.py,sha256=x0b1uCTo-qkZN3Dd2ILd5024GNz6LHWjpALlFYgxN8Q,12696
|
26
26
|
honeybee_schema/energy/shw.py,sha256=3ReuIgjm6RnLVFeB3MxfRf8vphr13uJr58aFlBu1OIs,2148
|
27
|
-
honeybee_schema/energy/simulation.py,sha256=
|
27
|
+
honeybee_schema/energy/simulation.py,sha256=4j_z17tx_fnRLsGfohiRF6ozDVzMEPqYgXjFjZkpAxc,14920
|
28
28
|
honeybee_schema/energy/ventcool.py,sha256=gm9pnXT0p8e2V_AkAJeNJUhFI4s2c3sLv7RkaF-olNk,14813
|
29
29
|
honeybee_schema/energy/hvac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
30
|
honeybee_schema/energy/hvac/_template.py,sha256=BlAP6FB1Da7ccVs8A-JPgSM2ubS2sWOXMrvXs-7LQek,1353
|
@@ -47,9 +47,9 @@ honeybee_schema/updater/version_1_40_1.py,sha256=Fx70M8H9HZ_apCkdFn6njEd6lG9ZWrl
|
|
47
47
|
honeybee_schema/updater/version_1_43_1.py,sha256=0kZ1z7MzBhToljgOUCGWaTW1mq2F72oS39jn9sEf5mU,932
|
48
48
|
honeybee_schema/updater/version_1_43_2.py,sha256=XnPCdpjVN3hFzZqIIEjX4BYTtCxuIYCuO96n_y64aVw,617
|
49
49
|
honeybee_schema/updater/version_1_43_5.py,sha256=ci790Qh7xtRtgMj_RdldBXCScwiBkvMt2K1Mpe7oWQE,499
|
50
|
-
honeybee_schema-1.57.
|
51
|
-
honeybee_schema-1.57.
|
52
|
-
honeybee_schema-1.57.
|
53
|
-
honeybee_schema-1.57.
|
54
|
-
honeybee_schema-1.57.
|
55
|
-
honeybee_schema-1.57.
|
50
|
+
honeybee_schema-1.57.2.dist-info/LICENSE,sha256=EwA6Jt85TmMNyAsFb5GWv-tZ0vGYo8hZHBMcI391qjw,1709
|
51
|
+
honeybee_schema-1.57.2.dist-info/METADATA,sha256=KjmtIg2cOL_ccBfBJb0bt1QjnjSeMAED9yr2VLJFSOA,2505
|
52
|
+
honeybee_schema-1.57.2.dist-info/WHEEL,sha256=unfA4MOaH0icIyIA5oH6E2sn2Hq5zKtLlHsWapZGwes,110
|
53
|
+
honeybee_schema-1.57.2.dist-info/entry_points.txt,sha256=suHpy6-iPhAylFCa-KopQHRJIwLhTCIVO2NHMzdEn8M,61
|
54
|
+
honeybee_schema-1.57.2.dist-info/top_level.txt,sha256=rTScYvlcOBkdc0is-F6Q3tRkmy-vf4bMTJGXzsxI2sA,16
|
55
|
+
honeybee_schema-1.57.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|