honeybee-schema 1.58.0__py2.py3-none-any.whl → 1.58.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/doe2/properties.py +11 -0
- honeybee_schema/energy/schedule.py +3 -3
- {honeybee_schema-1.58.0.dist-info → honeybee_schema-1.58.2.dist-info}/METADATA +3 -2
- {honeybee_schema-1.58.0.dist-info → honeybee_schema-1.58.2.dist-info}/RECORD +8 -8
- {honeybee_schema-1.58.0.dist-info → honeybee_schema-1.58.2.dist-info}/LICENSE +0 -0
- {honeybee_schema-1.58.0.dist-info → honeybee_schema-1.58.2.dist-info}/WHEEL +0 -0
- {honeybee_schema-1.58.0.dist-info → honeybee_schema-1.58.2.dist-info}/entry_points.txt +0 -0
- {honeybee_schema-1.58.0.dist-info → honeybee_schema-1.58.2.dist-info}/top_level.txt +0 -0
@@ -4,6 +4,7 @@ from typing import Union
|
|
4
4
|
|
5
5
|
from .._base import NoExtraBaseModel
|
6
6
|
from ..altnumber import Autocalculate
|
7
|
+
from ..geometry import Face3D
|
7
8
|
|
8
9
|
|
9
10
|
class RoomDoe2Properties(NoExtraBaseModel):
|
@@ -57,6 +58,16 @@ class RoomDoe2Properties(NoExtraBaseModel):
|
|
57
58
|
'not be written into the INP.'
|
58
59
|
)
|
59
60
|
|
61
|
+
space_polygon_geometry: Face3D = Field(
|
62
|
+
default=None,
|
63
|
+
description='An optional horizontal Face3D object, which will '
|
64
|
+
'be used to set the SPACE polygon during export to INP. If None, '
|
65
|
+
'the SPACE polygon is auto-calculated from the 3D Room geometry. '
|
66
|
+
'Specifying a geometry here can help overcome some limitations of '
|
67
|
+
'this auto-calculation, particularly for cases where the floors '
|
68
|
+
'of the Room are composed of AirBoundaries.'
|
69
|
+
)
|
70
|
+
|
60
71
|
|
61
72
|
class ModelDoe2Properties(NoExtraBaseModel):
|
62
73
|
|
@@ -63,8 +63,8 @@ class ScheduleDay(EnergyBaseModel):
|
|
63
63
|
)
|
64
64
|
|
65
65
|
times: List[conlist(int, min_items=2, max_items=2)] = Field(
|
66
|
-
[0, 0],
|
67
|
-
description='A list of lists with each sub-list
|
66
|
+
[[0, 0]],
|
67
|
+
description='A list of lists with each sub-list possessing 2 values for '
|
68
68
|
'[hour, minute]. The length of the master list must match the length '
|
69
69
|
'of the values list. Each time in the master list represents the time '
|
70
70
|
'of day that the corresponding value begins to take effect. For example '
|
@@ -251,7 +251,7 @@ class ScheduleFixedIntervalAbridged(IDdEnergyBaseModel):
|
|
251
251
|
...,
|
252
252
|
min_items=24,
|
253
253
|
max_items=527040,
|
254
|
-
description='A list of timeseries values
|
254
|
+
description='A list of timeseries values occurring at each timestep over '
|
255
255
|
'the course of the simulation.'
|
256
256
|
)
|
257
257
|
|
@@ -1,12 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: honeybee-schema
|
3
|
-
Version: 1.58.
|
3
|
+
Version: 1.58.2
|
4
4
|
Summary: Honeybee Data-Model Objects
|
5
5
|
Home-page: https://github.com/ladybug-tools-in2/honeybee-schema
|
6
6
|
Author: Ladybug Tools
|
7
7
|
Author-email: info@ladybug.tools
|
8
8
|
Classifier: Programming Language :: Python :: 3.6
|
9
9
|
Classifier: Programming Language :: Python :: 3.7
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
10
11
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
11
12
|
Classifier: Operating System :: OS Independent
|
12
13
|
Description-Content-Type: text/markdown
|
@@ -14,7 +15,7 @@ License-File: LICENSE
|
|
14
15
|
Requires-Dist: pydantic-openapi-helper (>=0.2.10)
|
15
16
|
Requires-Dist: honeybee-standards (==2.0.6)
|
16
17
|
Provides-Extra: cli
|
17
|
-
Requires-Dist: click (
|
18
|
+
Requires-Dist: click (>=7.1.2) ; extra == 'cli'
|
18
19
|
|
19
20
|
[](https://travis-ci.com/ladybug-tools/honeybee-schema)
|
20
21
|
[](https://coveralls.io/github/ladybug-tools/honeybee-schema)
|
@@ -10,7 +10,7 @@ honeybee_schema/model.py,sha256=4rQv8L0_9YmGExWHY7o_PAYBwthZHguAiAgRNbP2TpU,1419
|
|
10
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/doe2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
-
honeybee_schema/doe2/properties.py,sha256=
|
13
|
+
honeybee_schema/doe2/properties.py,sha256=h3GNDH3D7LojdlIdBSBG5OBXXkdSs0hyCW4ZJy9oOzE,2855
|
14
14
|
honeybee_schema/energy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
15
|
honeybee_schema/energy/_base.py,sha256=drAW-DguuwB2ahBGG1lboGcfJKJESnXjyAWicMtjQ-U,2305
|
16
16
|
honeybee_schema/energy/construction.py,sha256=1HldU4TO5vy4y4oCFt7GPsLBRaOJSbDPQgQX6OrWsWU,12742
|
@@ -24,7 +24,7 @@ honeybee_schema/energy/load.py,sha256=E106Pn-fn_4qCW8M1Y9RX6rG9iBeu0k7MY9x-dJi_3
|
|
24
24
|
honeybee_schema/energy/material.py,sha256=vdfvTaTpMRDoomzb91ujLdbxOxFY_pHdTfXxiNbD91k,28276
|
25
25
|
honeybee_schema/energy/programtype.py,sha256=1keIS_BX8pKSUtjE4PJ1PP-Tbs5KQVwtsQ0RNdiACUE,4307
|
26
26
|
honeybee_schema/energy/properties.py,sha256=W8gBBGKKSnsKivG38QEe07vHk3zhwZ7sqVeNU5ewJV0,15074
|
27
|
-
honeybee_schema/energy/schedule.py,sha256=
|
27
|
+
honeybee_schema/energy/schedule.py,sha256=iVfKsWBcI3AL7g-P9bzaGcnrLUjzWQPxzXGg5LKfF9Q,12700
|
28
28
|
honeybee_schema/energy/shw.py,sha256=3ReuIgjm6RnLVFeB3MxfRf8vphr13uJr58aFlBu1OIs,2148
|
29
29
|
honeybee_schema/energy/simulation.py,sha256=4j_z17tx_fnRLsGfohiRF6ozDVzMEPqYgXjFjZkpAxc,14920
|
30
30
|
honeybee_schema/energy/ventcool.py,sha256=gm9pnXT0p8e2V_AkAJeNJUhFI4s2c3sLv7RkaF-olNk,14813
|
@@ -49,9 +49,9 @@ honeybee_schema/updater/version_1_40_1.py,sha256=Fx70M8H9HZ_apCkdFn6njEd6lG9ZWrl
|
|
49
49
|
honeybee_schema/updater/version_1_43_1.py,sha256=0kZ1z7MzBhToljgOUCGWaTW1mq2F72oS39jn9sEf5mU,932
|
50
50
|
honeybee_schema/updater/version_1_43_2.py,sha256=XnPCdpjVN3hFzZqIIEjX4BYTtCxuIYCuO96n_y64aVw,617
|
51
51
|
honeybee_schema/updater/version_1_43_5.py,sha256=ci790Qh7xtRtgMj_RdldBXCScwiBkvMt2K1Mpe7oWQE,499
|
52
|
-
honeybee_schema-1.58.
|
53
|
-
honeybee_schema-1.58.
|
54
|
-
honeybee_schema-1.58.
|
55
|
-
honeybee_schema-1.58.
|
56
|
-
honeybee_schema-1.58.
|
57
|
-
honeybee_schema-1.58.
|
52
|
+
honeybee_schema-1.58.2.dist-info/LICENSE,sha256=EwA6Jt85TmMNyAsFb5GWv-tZ0vGYo8hZHBMcI391qjw,1709
|
53
|
+
honeybee_schema-1.58.2.dist-info/METADATA,sha256=xPUtX40JZyI1dpmIyQG9CmgeJpTgWdPAOmfRWI5LyIM,2556
|
54
|
+
honeybee_schema-1.58.2.dist-info/WHEEL,sha256=unfA4MOaH0icIyIA5oH6E2sn2Hq5zKtLlHsWapZGwes,110
|
55
|
+
honeybee_schema-1.58.2.dist-info/entry_points.txt,sha256=suHpy6-iPhAylFCa-KopQHRJIwLhTCIVO2NHMzdEn8M,61
|
56
|
+
honeybee_schema-1.58.2.dist-info/top_level.txt,sha256=rTScYvlcOBkdc0is-F6Q3tRkmy-vf4bMTJGXzsxI2sA,16
|
57
|
+
honeybee_schema-1.58.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|