honeybee-energy 1.116.31__py2.py3-none-any.whl → 1.116.33__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.
Potentially problematic release.
This version of honeybee-energy might be problematic. Click here for more details.
- honeybee_energy/construction/window.py +5 -2
- honeybee_energy/properties/model.py +3 -4
- {honeybee_energy-1.116.31.dist-info → honeybee_energy-1.116.33.dist-info}/METADATA +2 -2
- {honeybee_energy-1.116.31.dist-info → honeybee_energy-1.116.33.dist-info}/RECORD +8 -8
- {honeybee_energy-1.116.31.dist-info → honeybee_energy-1.116.33.dist-info}/LICENSE +0 -0
- {honeybee_energy-1.116.31.dist-info → honeybee_energy-1.116.33.dist-info}/WHEEL +0 -0
- {honeybee_energy-1.116.31.dist-info → honeybee_energy-1.116.33.dist-info}/entry_points.txt +0 -0
- {honeybee_energy-1.116.31.dist-info → honeybee_energy-1.116.33.dist-info}/top_level.txt +0 -0
|
@@ -878,8 +878,11 @@ class WindowConstruction(_ConstructionBase):
|
|
|
878
878
|
frame_strings = frame_pattern.findall(file_contents)
|
|
879
879
|
frame_materials = []
|
|
880
880
|
for fr_str in frame_strings:
|
|
881
|
-
|
|
882
|
-
|
|
881
|
+
try:
|
|
882
|
+
frame_obj = EnergyWindowFrame.from_idf(fr_str.strip())
|
|
883
|
+
frame_materials.append(frame_obj)
|
|
884
|
+
except AssertionError: # invalid window frame material, continue
|
|
885
|
+
pass
|
|
883
886
|
# if there's only one frame in the file, assume it applies to all constructions
|
|
884
887
|
# this is the convention used by LBNL WINDOW
|
|
885
888
|
if len(frame_materials) == 1:
|
|
@@ -11,7 +11,7 @@ from honeybee.boundarycondition import Outdoors, Surface, boundary_conditions
|
|
|
11
11
|
from honeybee.facetype import AirBoundary, face_types
|
|
12
12
|
from honeybee.extensionutil import model_extension_dicts
|
|
13
13
|
from honeybee.checkdup import check_duplicate_identifiers
|
|
14
|
-
from honeybee.units import conversion_factor_to_meters
|
|
14
|
+
from honeybee.units import conversion_factor_to_meters, parse_distance_string
|
|
15
15
|
from honeybee.typing import invalid_dict_error, clean_ep_string, \
|
|
16
16
|
clean_and_id_ep_string, clean_and_number_ep_string
|
|
17
17
|
from honeybee.face import Face
|
|
@@ -753,6 +753,7 @@ class ModelEnergyProperties(object):
|
|
|
753
753
|
msgs = []
|
|
754
754
|
tol = self.host.tolerance
|
|
755
755
|
ang_tol = self.host.angle_tolerance
|
|
756
|
+
e_tol = parse_distance_string('1cm', self.units)
|
|
756
757
|
|
|
757
758
|
# perform checks for duplicate identifiers, which might mess with other checks
|
|
758
759
|
msgs.append(self.host.check_all_duplicate_identifiers(False, detailed))
|
|
@@ -760,7 +761,7 @@ class ModelEnergyProperties(object):
|
|
|
760
761
|
# perform several checks for the Honeybee schema geometry rules
|
|
761
762
|
msgs.append(self.host.check_planar(tol, False, detailed))
|
|
762
763
|
msgs.append(self.host.check_self_intersecting(tol, False, detailed))
|
|
763
|
-
msgs.append(self.host.check_degenerate_rooms(
|
|
764
|
+
msgs.append(self.host.check_degenerate_rooms(e_tol, False, detailed))
|
|
764
765
|
|
|
765
766
|
# perform geometry checks related to parent-child relationships
|
|
766
767
|
msgs.append(self.host.check_sub_faces_valid(tol, ang_tol, False, detailed))
|
|
@@ -819,8 +820,6 @@ class ModelEnergyProperties(object):
|
|
|
819
820
|
# set up defaults to ensure the method runs correctly
|
|
820
821
|
detailed = False if raise_exception else detailed
|
|
821
822
|
msgs = []
|
|
822
|
-
# perform checks for duplicate identifiers
|
|
823
|
-
msgs.append(self.check_all_duplicate_identifiers(False, detailed))
|
|
824
823
|
# perform checks for specific energy simulation rules
|
|
825
824
|
msgs.append(self.check_all_zones_have_one_hvac(False, detailed))
|
|
826
825
|
msgs.append(self.check_detailed_hvac_rooms(False, detailed))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: honeybee-energy
|
|
3
|
-
Version: 1.116.
|
|
3
|
+
Version: 1.116.33
|
|
4
4
|
Summary: Energy simulation library for honeybee.
|
|
5
5
|
Home-page: https://github.com/ladybug-tools/honeybee-energy
|
|
6
6
|
Author: Ladybug Tools
|
|
@@ -14,7 +14,7 @@ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: honeybee-core==1.61.
|
|
17
|
+
Requires-Dist: honeybee-core==1.61.19
|
|
18
18
|
Requires-Dist: honeybee-standards==2.0.7
|
|
19
19
|
Provides-Extra: openstudio
|
|
20
20
|
Requires-Dist: honeybee-openstudio==0.3.9; extra == "openstudio"
|
|
@@ -43,7 +43,7 @@ honeybee_energy/construction/dictutil.py,sha256=k8-e6_5W0yOxO9CY95Ww5IA7jqpic9Eb
|
|
|
43
43
|
honeybee_energy/construction/dynamic.py,sha256=tKzEOuIdUCGxGjpRJaBfjMIz6Q3d5h5i675SJyTJ3J4,23395
|
|
44
44
|
honeybee_energy/construction/opaque.py,sha256=HwmWXIdK33Li8bN61QlvxsZBecJVuSqSzVrS6pOwY_w,20228
|
|
45
45
|
honeybee_energy/construction/shade.py,sha256=OV712l0RIcOYbKTnlZ0mUnM1XvL70vuvtm7yp5vD1a8,12358
|
|
46
|
-
honeybee_energy/construction/window.py,sha256=
|
|
46
|
+
honeybee_energy/construction/window.py,sha256=bOVTJlvZQwDFM2C0hT08SDB9o_7Me6hMgSC7EUOoWcA,50377
|
|
47
47
|
honeybee_energy/construction/windowshade.py,sha256=FfiI7O8PaA1oqA5Nc23IiRR6FuffE-5WxclzSnwsQ0c,35384
|
|
48
48
|
honeybee_energy/generator/__init__.py,sha256=oP95uJfNAf5t6HxnQhKZPhNd3MthO4VzpoTq2Q_OAgE,164
|
|
49
49
|
honeybee_energy/generator/loadcenter.py,sha256=nyMyTcmD4wgsQM5MAu_hlctyAtU8QrVU-p4tgMEA73E,9150
|
|
@@ -115,7 +115,7 @@ honeybee_energy/properties/aperture.py,sha256=lR2zMmGg-c0uhAiIq26Rk3iAV0_v-c6kiI
|
|
|
115
115
|
honeybee_energy/properties/door.py,sha256=IYNOkzLWJG5c4_EsHc1avWzZ-08a2RfjV0WzfivIvwc,15622
|
|
116
116
|
honeybee_energy/properties/extension.py,sha256=ILzHYtu5Y_KCOUixipWY9NTJHFgvZI7v27sDcFLuSmg,8539
|
|
117
117
|
honeybee_energy/properties/face.py,sha256=-7lj9_fzoGQ0QhGo_f7U6gUuB3Xy87fpgwSYnVWwZ8s,11400
|
|
118
|
-
honeybee_energy/properties/model.py,sha256=
|
|
118
|
+
honeybee_energy/properties/model.py,sha256=VpRtF2DnSqKdFmPgPAEJUHebUfob7dBOlxf8lLT5oS4,129022
|
|
119
119
|
honeybee_energy/properties/room.py,sha256=QAVRTWQKuSRHH7-nGx74q3UuaLfb01ZIbvixFTup9Ew,82311
|
|
120
120
|
honeybee_energy/properties/shade.py,sha256=Aj1RZh2KSkVMn5VT_QUckF_5R3I0O3b35EabqaI2i5g,14107
|
|
121
121
|
honeybee_energy/properties/shademesh.py,sha256=ykbs4llT86C_U5BhQy2EbINewfg9eVxiPaq5yCRhud8,11486
|
|
@@ -156,9 +156,9 @@ honeybee_energy/ventcool/opening.py,sha256=ZywoADlNQ6_8OfjV71ZUpbCAetQrRVj7aprBj
|
|
|
156
156
|
honeybee_energy/ventcool/simulation.py,sha256=gMF4sgCQ5R4iFWPnvvB3wxgeP_zEwnWl71ObIIe4XGU,14423
|
|
157
157
|
tests/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
158
158
|
tests/fixtures/userdata_fixtures.py,sha256=yDvBR6nsltel_U8hUoUsJ6yufPKTR7Wnsgxe68HtswQ,313
|
|
159
|
-
honeybee_energy-1.116.
|
|
160
|
-
honeybee_energy-1.116.
|
|
161
|
-
honeybee_energy-1.116.
|
|
162
|
-
honeybee_energy-1.116.
|
|
163
|
-
honeybee_energy-1.116.
|
|
164
|
-
honeybee_energy-1.116.
|
|
159
|
+
honeybee_energy-1.116.33.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
160
|
+
honeybee_energy-1.116.33.dist-info/METADATA,sha256=1P8X34CWis35Z8w_s4LFsft8YDJVoet5RZ2eVTvAo0Y,3575
|
|
161
|
+
honeybee_energy-1.116.33.dist-info/WHEEL,sha256=AHX6tWk3qWuce7vKLrj7lnulVHEdWoltgauo8bgCXgU,109
|
|
162
|
+
honeybee_energy-1.116.33.dist-info/entry_points.txt,sha256=QOMJbH-StaxT4hCjskZtqetNCMNioP3ZiuhoLQ6MANc,63
|
|
163
|
+
honeybee_energy-1.116.33.dist-info/top_level.txt,sha256=V9Lz0281hfT83Fy0fSdn_6vwRK9vTQe1_LQXd0_-gAI,22
|
|
164
|
+
honeybee_energy-1.116.33.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|