epinterface 1.0.4__py3-none-any.whl → 1.0.5__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.
- epinterface/sbem/builder.py +6 -4
- {epinterface-1.0.4.dist-info → epinterface-1.0.5.dist-info}/METADATA +1 -1
- {epinterface-1.0.4.dist-info → epinterface-1.0.5.dist-info}/RECORD +6 -6
- {epinterface-1.0.4.dist-info → epinterface-1.0.5.dist-info}/WHEEL +0 -0
- {epinterface-1.0.4.dist-info → epinterface-1.0.5.dist-info}/entry_points.txt +0 -0
- {epinterface-1.0.4.dist-info → epinterface-1.0.5.dist-info}/licenses/LICENSE +0 -0
epinterface/sbem/builder.py
CHANGED
|
@@ -8,7 +8,7 @@ import tempfile
|
|
|
8
8
|
from collections.abc import Callable
|
|
9
9
|
from dataclasses import dataclass
|
|
10
10
|
from pathlib import Path
|
|
11
|
-
from typing import Literal, cast
|
|
11
|
+
from typing import Literal, cast, get_args
|
|
12
12
|
from uuid import uuid4
|
|
13
13
|
|
|
14
14
|
import numpy as np
|
|
@@ -50,11 +50,13 @@ DESIRED_METERS = (
|
|
|
50
50
|
)
|
|
51
51
|
|
|
52
52
|
# TODO: add the meters for HVAC systems
|
|
53
|
-
|
|
53
|
+
AvailableHourlyVariables = Literal[
|
|
54
54
|
"Zone Mean Air Temperature",
|
|
55
55
|
"Zone Air Relative Humidity",
|
|
56
56
|
"Site Outdoor Air Drybulb Temperature",
|
|
57
|
-
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
AVAILABLE_HOURLY_VARIABLES = get_args(AvailableHourlyVariables)
|
|
58
60
|
|
|
59
61
|
|
|
60
62
|
class SimulationPathConfig(BaseModel):
|
|
@@ -850,7 +852,7 @@ class Model(BaseWeather, validate_assignment=True):
|
|
|
850
852
|
"Variable_Name": variable,
|
|
851
853
|
"Reporting_Frequency": "Hourly",
|
|
852
854
|
}
|
|
853
|
-
for variable in
|
|
855
|
+
for variable in AVAILABLE_HOURLY_VARIABLES
|
|
854
856
|
]
|
|
855
857
|
)
|
|
856
858
|
idf = IDF(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: epinterface
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: This is a repository for dynamically generating energy models within Python, relying on Archetypal and Eppy for most of its functionality.
|
|
5
5
|
Project-URL: Homepage, https://github.com/szvsw/epinterface
|
|
6
6
|
Project-URL: Documentation, https://szvsw.github.io/epinterface
|
|
@@ -20,7 +20,7 @@ epinterface/data/__init__.py,sha256=r6Uju05rbG3hVVAvCuqJS5wI_zLwK3fU_M8nKMC5DEA,
|
|
|
20
20
|
epinterface/data/res_schedules.parquet,sha256=GjMaqb8uywr7FwR3rAByL72BKGfoZiVuSdAH2sAPFvw,4295
|
|
21
21
|
epinterface/sbem/__init__.py,sha256=aOEtaivujVzFDMFyLrLRx_Xmwv7_Y60MYqObBsn5OR8,48
|
|
22
22
|
epinterface/sbem/annotations.py,sha256=qnN0z7Suri5eHHPJNvXWUorYbEMHGajX2DPezCYcCSQ,1302
|
|
23
|
-
epinterface/sbem/builder.py,sha256=
|
|
23
|
+
epinterface/sbem/builder.py,sha256=hgXHtILjpT921uAaw5Ictv_wChKVYoFsrPljJtDERTg,58198
|
|
24
24
|
epinterface/sbem/common.py,sha256=s7DekSlosfM2mQUZGiIGEbbgiJfF7h6QsTvYbAPP3Ac,1317
|
|
25
25
|
epinterface/sbem/exceptions.py,sha256=4uOXlZgJyvhhRG2cbSua2InxxXHanGSe74h2ioiNEkw,3332
|
|
26
26
|
epinterface/sbem/flat_model.py,sha256=q-G23Rvw3GBDYRm7Oa6PItI8_Xp-FYieLZmLDR4mNyM,84602
|
|
@@ -50,8 +50,8 @@ epinterface/sbem/prisma/migrations/20250325185158_add_mutually_exclusive_ventila
|
|
|
50
50
|
epinterface/sbem/prisma/migrations/20250326141941_reduce_naming_complexity_ventilation/migration.sql,sha256=tslwxYOfpbfWCUPqnOadTGk-BzluLcly27MV-mZy2Sc,2289
|
|
51
51
|
epinterface/sbem/prisma/migrations/20250331141910_add_support_for_attic_and_basement_constructions/migration.sql,sha256=fvAzKga8qsMmVM3jLFDAlSbBkWbqRGrHu5Mf2doIEgs,6690
|
|
52
52
|
epinterface/sbem/prisma/migrations/20250919152559_decouple_basement_infiltration/migration.sql,sha256=YrQJxHcU1jrKb6AlBSdfuJKETKkkyxqdKb-X8krBH-8,1876
|
|
53
|
-
epinterface-1.0.
|
|
54
|
-
epinterface-1.0.
|
|
55
|
-
epinterface-1.0.
|
|
56
|
-
epinterface-1.0.
|
|
57
|
-
epinterface-1.0.
|
|
53
|
+
epinterface-1.0.5.dist-info/METADATA,sha256=2t5ecDAFk_97jAnOAvlvFwHDarCGPXZIAmxJnkpObHA,3463
|
|
54
|
+
epinterface-1.0.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
55
|
+
epinterface-1.0.5.dist-info/entry_points.txt,sha256=bjjYRuHWvWV0d-QUesH6prRqHqcppTJANSuAfg3h9j8,78
|
|
56
|
+
epinterface-1.0.5.dist-info/licenses/LICENSE,sha256=hNp6DmbGMuUcwlnpYS8E-ZHYU7kxfmRUP8pLGQaCnu8,1066
|
|
57
|
+
epinterface-1.0.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|