honeybee-schema 1.59.1__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/__init__.py +1 -0
- honeybee_schema/__main__.py +4 -0
- honeybee_schema/_base.py +42 -0
- honeybee_schema/altnumber.py +18 -0
- honeybee_schema/boundarycondition.py +81 -0
- honeybee_schema/cli.py +115 -0
- honeybee_schema/comparison.py +208 -0
- honeybee_schema/doe2/__init__.py +0 -0
- honeybee_schema/doe2/properties.py +75 -0
- honeybee_schema/energy/__init__.py +0 -0
- honeybee_schema/energy/_base.py +64 -0
- honeybee_schema/energy/construction.py +324 -0
- honeybee_schema/energy/constructionset.py +359 -0
- honeybee_schema/energy/daylight.py +62 -0
- honeybee_schema/energy/designday.py +212 -0
- honeybee_schema/energy/generator.py +140 -0
- honeybee_schema/energy/global_constructionset.py +129 -0
- honeybee_schema/energy/hvac/__init__.py +0 -0
- honeybee_schema/energy/hvac/_template.py +38 -0
- honeybee_schema/energy/hvac/allair.py +257 -0
- honeybee_schema/energy/hvac/detailed.py +20 -0
- honeybee_schema/energy/hvac/doas.py +248 -0
- honeybee_schema/energy/hvac/heatcool.py +309 -0
- honeybee_schema/energy/hvac/idealair.py +107 -0
- honeybee_schema/energy/internalmass.py +25 -0
- honeybee_schema/energy/load.py +627 -0
- honeybee_schema/energy/material.py +949 -0
- honeybee_schema/energy/programtype.py +117 -0
- honeybee_schema/energy/properties.py +382 -0
- honeybee_schema/energy/schedule.py +350 -0
- honeybee_schema/energy/shw.py +53 -0
- honeybee_schema/energy/simulation.py +440 -0
- honeybee_schema/energy/ventcool.py +337 -0
- honeybee_schema/geometry.py +161 -0
- honeybee_schema/model.py +473 -0
- honeybee_schema/projectinfo.py +94 -0
- honeybee_schema/radiance/__init__.py +0 -0
- honeybee_schema/radiance/_base.py +22 -0
- honeybee_schema/radiance/asset.py +191 -0
- honeybee_schema/radiance/global_modifierset.py +92 -0
- honeybee_schema/radiance/modifier.py +373 -0
- honeybee_schema/radiance/modifierset.py +296 -0
- honeybee_schema/radiance/properties.py +149 -0
- honeybee_schema/radiance/state.py +69 -0
- honeybee_schema/updater/__init__.py +0 -0
- honeybee_schema/updater/version_1_39_12.py +14 -0
- honeybee_schema/updater/version_1_40_1.py +153 -0
- honeybee_schema/updater/version_1_43_1.py +18 -0
- honeybee_schema/updater/version_1_43_2.py +12 -0
- honeybee_schema/updater/version_1_43_5.py +11 -0
- honeybee_schema/validation.py +205 -0
- honeybee_schema-1.59.1.dist-info/METADATA +108 -0
- honeybee_schema-1.59.1.dist-info/RECORD +57 -0
- honeybee_schema-1.59.1.dist-info/WHEEL +5 -0
- honeybee_schema-1.59.1.dist-info/entry_points.txt +2 -0
- honeybee_schema-1.59.1.dist-info/licenses/LICENSE +23 -0
- honeybee_schema-1.59.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,117 @@
|
|
1
|
+
"""Programtype Schema"""
|
2
|
+
from pydantic import Field, constr
|
3
|
+
|
4
|
+
from ._base import IDdEnergyBaseModel
|
5
|
+
from .load import PeopleAbridged, LightingAbridged, ElectricEquipmentAbridged, \
|
6
|
+
GasEquipmentAbridged, ServiceHotWaterAbridged, \
|
7
|
+
InfiltrationAbridged, VentilationAbridged, SetpointAbridged, \
|
8
|
+
People, Lighting, ElectricEquipment, GasEquipment, ServiceHotWater, \
|
9
|
+
Infiltration, Ventilation, Setpoint
|
10
|
+
|
11
|
+
|
12
|
+
class ProgramTypeAbridged(IDdEnergyBaseModel):
|
13
|
+
|
14
|
+
type: constr(regex='^ProgramTypeAbridged$') = 'ProgramTypeAbridged'
|
15
|
+
|
16
|
+
people: PeopleAbridged = Field(
|
17
|
+
default=None,
|
18
|
+
description='People to describe the occupancy of the program. If None, '
|
19
|
+
'no occupancy will be assumed for the program.'
|
20
|
+
)
|
21
|
+
|
22
|
+
lighting: LightingAbridged = Field(
|
23
|
+
default=None,
|
24
|
+
description='Lighting to describe the lighting usage of the program. '
|
25
|
+
'If None, no lighting will be assumed for the program.'
|
26
|
+
)
|
27
|
+
|
28
|
+
electric_equipment: ElectricEquipmentAbridged = Field(
|
29
|
+
default=None,
|
30
|
+
description='ElectricEquipment to describe the usage of electric equipment '
|
31
|
+
'within the program. If None, no electric equipment will be assumed.'
|
32
|
+
)
|
33
|
+
|
34
|
+
gas_equipment: GasEquipmentAbridged = Field(
|
35
|
+
default=None,
|
36
|
+
description='GasEquipment to describe the usage of gas equipment '
|
37
|
+
'within the program. If None, no gas equipment will be assumed.'
|
38
|
+
)
|
39
|
+
|
40
|
+
service_hot_water: ServiceHotWaterAbridged = Field(
|
41
|
+
default=None,
|
42
|
+
description='ServiceHotWater object to describe the usage of hot water '
|
43
|
+
'within the program. If None, no hot water will be assumed.'
|
44
|
+
)
|
45
|
+
|
46
|
+
infiltration: InfiltrationAbridged = Field(
|
47
|
+
default=None,
|
48
|
+
description='Infiltration to describe the outdoor air leakage of '
|
49
|
+
'the program. If None, no infiltration will be assumed for the program.'
|
50
|
+
)
|
51
|
+
|
52
|
+
ventilation: VentilationAbridged = Field(
|
53
|
+
default=None,
|
54
|
+
description='Ventilation to describe the minimum outdoor air requirement '
|
55
|
+
'of the program. If None, no ventilation requirement will be assumed.'
|
56
|
+
)
|
57
|
+
|
58
|
+
setpoint: SetpointAbridged = Field(
|
59
|
+
default=None,
|
60
|
+
description='Setpoint object to describe the temperature and humidity setpoints '
|
61
|
+
'of the program. If None, the ProgramType cannot be assigned to a Room '
|
62
|
+
'that is conditioned.'
|
63
|
+
)
|
64
|
+
|
65
|
+
|
66
|
+
class ProgramType(ProgramTypeAbridged):
|
67
|
+
|
68
|
+
type: constr(regex='^ProgramType$') = 'ProgramType'
|
69
|
+
|
70
|
+
people: People = Field(
|
71
|
+
default=None,
|
72
|
+
description='People to describe the occupancy of the program. If None, '
|
73
|
+
'no occupancy will be assumed for the program.'
|
74
|
+
)
|
75
|
+
|
76
|
+
lighting: Lighting = Field(
|
77
|
+
default=None,
|
78
|
+
description='Lighting to describe the lighting usage of the program. '
|
79
|
+
'If None, no lighting will be assumed for the program.'
|
80
|
+
)
|
81
|
+
|
82
|
+
electric_equipment: ElectricEquipment = Field(
|
83
|
+
default=None,
|
84
|
+
description='ElectricEquipment to describe the usage of electric equipment '
|
85
|
+
'within the program. If None, no electric equipment will be assumed.'
|
86
|
+
)
|
87
|
+
|
88
|
+
gas_equipment: GasEquipment = Field(
|
89
|
+
default=None,
|
90
|
+
description='GasEquipment to describe the usage of gas equipment '
|
91
|
+
'within the program. If None, no gas equipment will be assumed.'
|
92
|
+
)
|
93
|
+
|
94
|
+
service_hot_water: ServiceHotWater = Field(
|
95
|
+
default=None,
|
96
|
+
description='ServiceHotWater object to describe the usage of hot water '
|
97
|
+
'within the program. If None, no hot water will be assumed.'
|
98
|
+
)
|
99
|
+
|
100
|
+
infiltration: Infiltration = Field(
|
101
|
+
default=None,
|
102
|
+
description='Infiltration to describe the outdoor air leakage of '
|
103
|
+
'the program. If None, no infiltration will be assumed for the program.'
|
104
|
+
)
|
105
|
+
|
106
|
+
ventilation: Ventilation = Field(
|
107
|
+
default=None,
|
108
|
+
description='Ventilation to describe the minimum outdoor air requirement '
|
109
|
+
'of the program. If None, no ventilation requirement will be assumed.'
|
110
|
+
)
|
111
|
+
|
112
|
+
setpoint: Setpoint = Field(
|
113
|
+
default=None,
|
114
|
+
description='Setpoint object to describe the temperature and humidity setpoints '
|
115
|
+
'of the program. If None, the ProgramType cannot be assigned to a Room '
|
116
|
+
'that is conditioned.'
|
117
|
+
)
|
@@ -0,0 +1,382 @@
|
|
1
|
+
"""Model energy properties."""
|
2
|
+
from pydantic import Field, constr
|
3
|
+
from typing import List, Union
|
4
|
+
|
5
|
+
from .._base import NoExtraBaseModel
|
6
|
+
from .constructionset import ConstructionSetAbridged, ConstructionSet
|
7
|
+
from .global_constructionset import GlobalConstructionSet
|
8
|
+
from .construction import OpaqueConstructionAbridged, WindowConstructionAbridged, \
|
9
|
+
ShadeConstruction, AirBoundaryConstructionAbridged, OpaqueConstruction, \
|
10
|
+
WindowConstruction, AirBoundaryConstruction, WindowConstructionShadeAbridged, \
|
11
|
+
WindowConstructionShade, WindowConstructionDynamicAbridged, WindowConstructionDynamic
|
12
|
+
from .material import EnergyMaterial, EnergyMaterialNoMass, EnergyMaterialVegetation, \
|
13
|
+
EnergyWindowMaterialSimpleGlazSys, EnergyWindowMaterialGlazing, \
|
14
|
+
EnergyWindowMaterialGas, EnergyWindowMaterialGasCustom, \
|
15
|
+
EnergyWindowMaterialGasMixture, EnergyWindowFrame, \
|
16
|
+
EnergyWindowMaterialBlind, EnergyWindowMaterialShade
|
17
|
+
from .programtype import ProgramTypeAbridged, ProgramType
|
18
|
+
from .load import PeopleAbridged, LightingAbridged, ElectricEquipmentAbridged, \
|
19
|
+
GasEquipmentAbridged, ServiceHotWaterAbridged, InfiltrationAbridged, \
|
20
|
+
VentilationAbridged, SetpointAbridged, ProcessAbridged
|
21
|
+
from .daylight import DaylightingControl
|
22
|
+
from .ventcool import VentilationControlAbridged, VentilationFan, VentilationOpening, \
|
23
|
+
VentilationSimulationControl, AFNCrack
|
24
|
+
from .internalmass import InternalMassAbridged
|
25
|
+
from .schedule import ScheduleTypeLimit, ScheduleRulesetAbridged, \
|
26
|
+
ScheduleFixedIntervalAbridged, ScheduleRuleset, ScheduleFixedInterval
|
27
|
+
from .hvac.idealair import IdealAirSystemAbridged
|
28
|
+
from .hvac.allair import VAV, PVAV, PSZ, PTAC, ForcedAirFurnace
|
29
|
+
from .hvac.doas import FCUwithDOASAbridged, WSHPwithDOASAbridged, VRFwithDOASAbridged, \
|
30
|
+
RadiantwithDOASAbridged
|
31
|
+
from .hvac.heatcool import FCU, WSHP, VRF, Baseboard, EvaporativeCooler, Residential, \
|
32
|
+
WindowAC, GasUnitHeater, Radiant
|
33
|
+
from .hvac.detailed import DetailedHVAC
|
34
|
+
from .shw import SHWSystem
|
35
|
+
from .generator import PVProperties, ElectricLoadCenter
|
36
|
+
|
37
|
+
|
38
|
+
class ShadeMeshEnergyPropertiesAbridged(NoExtraBaseModel):
|
39
|
+
|
40
|
+
type: constr(regex='^ShadeMeshEnergyPropertiesAbridged$') = \
|
41
|
+
'ShadeMeshEnergyPropertiesAbridged'
|
42
|
+
|
43
|
+
construction: str = Field(
|
44
|
+
default=None,
|
45
|
+
min_length=1,
|
46
|
+
max_length=100,
|
47
|
+
description='Identifier of a ShadeConstruction to set the reflectance and '
|
48
|
+
'specularity of the Shade. If None, it will be a generic context '
|
49
|
+
'construction that is completely diffuse with 0.2 visible and solar '
|
50
|
+
'reflectance. Unless it is building attached, in which case it will be '
|
51
|
+
'set by the default generic ConstructionSet.'
|
52
|
+
)
|
53
|
+
|
54
|
+
transmittance_schedule: str = Field(
|
55
|
+
default=None,
|
56
|
+
min_length=1,
|
57
|
+
max_length=100,
|
58
|
+
description='Identifier of a schedule to set the transmittance of the shade, '
|
59
|
+
'which can vary throughout the simulation. If None, the shade will '
|
60
|
+
'be completely opaque.'
|
61
|
+
)
|
62
|
+
|
63
|
+
|
64
|
+
class ShadeEnergyPropertiesAbridged(NoExtraBaseModel):
|
65
|
+
|
66
|
+
type: constr(regex='^ShadeEnergyPropertiesAbridged$') = \
|
67
|
+
'ShadeEnergyPropertiesAbridged'
|
68
|
+
|
69
|
+
construction: str = Field(
|
70
|
+
default=None,
|
71
|
+
min_length=1,
|
72
|
+
max_length=100,
|
73
|
+
description='Identifier of a ShadeConstruction to set the reflectance and '
|
74
|
+
'specularity of the Shade. If None, the construction is set by the'
|
75
|
+
'parent Room construction_set, the Model global_construction_set or '
|
76
|
+
'(in the case fo an orphaned shade) the EnergyPlus default of 0.2 '
|
77
|
+
'diffuse reflectance.'
|
78
|
+
)
|
79
|
+
|
80
|
+
transmittance_schedule: str = Field(
|
81
|
+
default=None,
|
82
|
+
min_length=1,
|
83
|
+
max_length=100,
|
84
|
+
description='Identifier of a schedule to set the transmittance of the shade, '
|
85
|
+
'which can vary throughout the simulation. If None, the shade will '
|
86
|
+
'be completely opaque.'
|
87
|
+
)
|
88
|
+
|
89
|
+
pv_properties: PVProperties = Field(
|
90
|
+
default=None,
|
91
|
+
description='An optional PVProperties object to specify photovoltaic '
|
92
|
+
'behavior of the Shade. If None, the Shade will have no Photovoltaic '
|
93
|
+
'properties. Note that the normal of the Shade is important in '
|
94
|
+
'determining the performance of the shade as a PV geometry.'
|
95
|
+
)
|
96
|
+
|
97
|
+
|
98
|
+
class DoorEnergyPropertiesAbridged(NoExtraBaseModel):
|
99
|
+
|
100
|
+
type: constr(regex='^DoorEnergyPropertiesAbridged$') = \
|
101
|
+
'DoorEnergyPropertiesAbridged'
|
102
|
+
|
103
|
+
construction: str = Field(
|
104
|
+
default=None,
|
105
|
+
min_length=1,
|
106
|
+
max_length=100,
|
107
|
+
description='Identifier of an OpaqueConstruction or WindowConstruction '
|
108
|
+
'for the door. Note that the host door must have the is_glass property '
|
109
|
+
'set to True to assign a WindowConstruction. If None, the construction '
|
110
|
+
'is set by the parent Room construction_set or the Model '
|
111
|
+
'global_construction_set.'
|
112
|
+
)
|
113
|
+
|
114
|
+
vent_opening: VentilationOpening = Field(
|
115
|
+
default=None,
|
116
|
+
description='An optional VentilationOpening to specify the operable '
|
117
|
+
'portion of the Door.'
|
118
|
+
)
|
119
|
+
|
120
|
+
|
121
|
+
class ApertureEnergyPropertiesAbridged(NoExtraBaseModel):
|
122
|
+
|
123
|
+
type: constr(regex='^ApertureEnergyPropertiesAbridged$') = \
|
124
|
+
'ApertureEnergyPropertiesAbridged'
|
125
|
+
|
126
|
+
construction: str = Field(
|
127
|
+
default=None,
|
128
|
+
min_length=1,
|
129
|
+
max_length=100,
|
130
|
+
description='Identifier of a WindowConstruction for the aperture. If None, the '
|
131
|
+
'construction is set by the parent Room construction_set or the Model '
|
132
|
+
'global_construction_set.'
|
133
|
+
)
|
134
|
+
|
135
|
+
vent_opening: VentilationOpening = Field(
|
136
|
+
default=None,
|
137
|
+
description='An optional VentilationOpening to specify the operable '
|
138
|
+
'portion of the Aperture.'
|
139
|
+
)
|
140
|
+
|
141
|
+
|
142
|
+
class FaceEnergyPropertiesAbridged(NoExtraBaseModel):
|
143
|
+
|
144
|
+
type: constr(regex='^FaceEnergyPropertiesAbridged$') = \
|
145
|
+
'FaceEnergyPropertiesAbridged'
|
146
|
+
|
147
|
+
construction: str = Field(
|
148
|
+
default=None,
|
149
|
+
min_length=1,
|
150
|
+
max_length=100,
|
151
|
+
description='Identifier of an OpaqueConstruction for the Face. If None, the '
|
152
|
+
'construction is set by the parent Room construction_set or the '
|
153
|
+
'Model global_construction_set.'
|
154
|
+
)
|
155
|
+
|
156
|
+
vent_crack: AFNCrack = Field(
|
157
|
+
default=None,
|
158
|
+
description='An optional AFNCrack to specify airflow through a surface crack '
|
159
|
+
'used by the AirflowNetwork.'
|
160
|
+
)
|
161
|
+
|
162
|
+
|
163
|
+
class RoomEnergyPropertiesAbridged(NoExtraBaseModel):
|
164
|
+
|
165
|
+
type: constr(regex='^RoomEnergyPropertiesAbridged$') = \
|
166
|
+
'RoomEnergyPropertiesAbridged'
|
167
|
+
|
168
|
+
construction_set: str = Field(
|
169
|
+
default=None,
|
170
|
+
min_length=1,
|
171
|
+
max_length=100,
|
172
|
+
description='Identifier of a ConstructionSet to specify all default '
|
173
|
+
'constructions for the Faces, Apertures, and Doors of the Room. If '
|
174
|
+
'None, the Room will use the Model global_construction_set.'
|
175
|
+
)
|
176
|
+
|
177
|
+
program_type: str = Field(
|
178
|
+
default=None,
|
179
|
+
min_length=1,
|
180
|
+
max_length=100,
|
181
|
+
description='Identifier of a ProgramType to specify all default schedules '
|
182
|
+
'and loads for the Room. If None, the Room will have no loads or setpoints.'
|
183
|
+
)
|
184
|
+
|
185
|
+
hvac: str = Field(
|
186
|
+
default=None,
|
187
|
+
min_length=1,
|
188
|
+
max_length=100,
|
189
|
+
description='An optional identifier of a HVAC system (such as an IdealAirSystem)'
|
190
|
+
' that specifies how the Room is conditioned. If None, it will be assumed '
|
191
|
+
'that the Room is not conditioned.'
|
192
|
+
)
|
193
|
+
|
194
|
+
shw: str = Field(
|
195
|
+
default=None,
|
196
|
+
min_length=1,
|
197
|
+
max_length=100,
|
198
|
+
description='An optional identifier of a Service Hot Water (SHW) system '
|
199
|
+
'that specifies how the hot water load of the Room is met. If None, the hot '
|
200
|
+
'water load will be met with a generic system that only measures thermal load'
|
201
|
+
'and does not account for system efficiencies.'
|
202
|
+
)
|
203
|
+
|
204
|
+
people: PeopleAbridged = Field(
|
205
|
+
default=None,
|
206
|
+
description='People object to describe the occupancy of the Room.'
|
207
|
+
)
|
208
|
+
|
209
|
+
lighting: LightingAbridged = Field(
|
210
|
+
default=None,
|
211
|
+
description='Lighting object to describe the lighting usage of the Room.'
|
212
|
+
)
|
213
|
+
|
214
|
+
electric_equipment: ElectricEquipmentAbridged = Field(
|
215
|
+
default=None,
|
216
|
+
description='ElectricEquipment object to describe the electric equipment usage.'
|
217
|
+
)
|
218
|
+
|
219
|
+
gas_equipment: GasEquipmentAbridged = Field(
|
220
|
+
default=None,
|
221
|
+
description='GasEquipment object to describe the gas equipment usage.'
|
222
|
+
)
|
223
|
+
|
224
|
+
service_hot_water: ServiceHotWaterAbridged = Field(
|
225
|
+
default=None,
|
226
|
+
description='ServiceHotWater object to describe the hot water usage.'
|
227
|
+
)
|
228
|
+
|
229
|
+
infiltration: InfiltrationAbridged = Field(
|
230
|
+
default=None,
|
231
|
+
description='Infiltration object to to describe the outdoor air leakage.'
|
232
|
+
)
|
233
|
+
|
234
|
+
ventilation: VentilationAbridged = Field(
|
235
|
+
default=None,
|
236
|
+
description='Ventilation object for the minimum outdoor air requirement.'
|
237
|
+
)
|
238
|
+
|
239
|
+
setpoint: SetpointAbridged = Field(
|
240
|
+
default=None,
|
241
|
+
description='Setpoint object for the temperature setpoints of the Room.'
|
242
|
+
)
|
243
|
+
|
244
|
+
daylighting_control: DaylightingControl = Field(
|
245
|
+
default=None,
|
246
|
+
description='An optional DaylightingControl object to dictate the dimming '
|
247
|
+
'of lights. If None, the lighting will respond only to the schedule and '
|
248
|
+
'not the daylight conditions within the room.'
|
249
|
+
)
|
250
|
+
|
251
|
+
window_vent_control: VentilationControlAbridged = Field(
|
252
|
+
default=None,
|
253
|
+
description='An optional VentilationControl object to dictate the opening '
|
254
|
+
'of windows. If None, the windows will never open.'
|
255
|
+
)
|
256
|
+
|
257
|
+
fans: List[VentilationFan] = Field(
|
258
|
+
default=None,
|
259
|
+
description='An optional list of VentilationFan objects for fans within the '
|
260
|
+
'room. Note that these fans are not connected to the heating or cooling system '
|
261
|
+
'and are meant to represent the intentional circulation of unconditioned '
|
262
|
+
'outdoor air for the purposes of keeping a space cooler, drier or free '
|
263
|
+
'of indoor pollutants (as in the case of kitchen or bathroom exhaust fans). '
|
264
|
+
'For the specification of mechanical ventilation of conditioned outdoor air, '
|
265
|
+
'the Room.ventilation property should be used and the Room should be '
|
266
|
+
'given a HVAC that can meet this specification.'
|
267
|
+
)
|
268
|
+
|
269
|
+
internal_masses: List[InternalMassAbridged] = Field(
|
270
|
+
default=None,
|
271
|
+
description='An optional list of of InternalMass objects for thermal mass '
|
272
|
+
'exposed to Room air. Note that internal masses assigned this way cannot "see" '
|
273
|
+
'solar radiation that may potentially hit them and, as such, caution should be '
|
274
|
+
'taken when using this component with internal mass objects that are not '
|
275
|
+
'always in shade. Masses are factored into the the thermal calculations '
|
276
|
+
'of the Room by undergoing heat transfer with the indoor air.'
|
277
|
+
)
|
278
|
+
|
279
|
+
process_loads: List[ProcessAbridged] = Field(
|
280
|
+
default=None,
|
281
|
+
description='An optional list of of Process objects for process loads within '
|
282
|
+
'the room. These can represent kilns, manufacturing equipment, and various '
|
283
|
+
'industrial processes. They can also be used to represent wood burning '
|
284
|
+
'fireplaces or certain pieces of equipment to be separated from the other '
|
285
|
+
'end uses.'
|
286
|
+
)
|
287
|
+
|
288
|
+
|
289
|
+
class ModelEnergyProperties(NoExtraBaseModel):
|
290
|
+
|
291
|
+
type: constr(regex='^ModelEnergyProperties$') = \
|
292
|
+
'ModelEnergyProperties'
|
293
|
+
|
294
|
+
global_construction_set: GlobalConstructionSet = Field(
|
295
|
+
default=GlobalConstructionSet(),
|
296
|
+
description='Global Energy construction set.',
|
297
|
+
readOnly=True
|
298
|
+
)
|
299
|
+
|
300
|
+
construction_sets: List[Union[ConstructionSetAbridged, ConstructionSet]] = Field(
|
301
|
+
default=None,
|
302
|
+
description='List of all unique ConstructionSets in the Model.'
|
303
|
+
)
|
304
|
+
|
305
|
+
constructions: List[
|
306
|
+
Union[
|
307
|
+
OpaqueConstructionAbridged, WindowConstructionAbridged,
|
308
|
+
WindowConstructionShadeAbridged, AirBoundaryConstructionAbridged,
|
309
|
+
OpaqueConstruction, WindowConstruction, WindowConstructionShade,
|
310
|
+
WindowConstructionDynamicAbridged, WindowConstructionDynamic,
|
311
|
+
AirBoundaryConstruction, ShadeConstruction
|
312
|
+
]
|
313
|
+
] = Field(
|
314
|
+
default=None,
|
315
|
+
description='A list of all unique constructions in the model. This includes '
|
316
|
+
'constructions across all Faces, Apertures, Doors, Shades, Room '
|
317
|
+
'ConstructionSets, and the global_construction_set.'
|
318
|
+
)
|
319
|
+
|
320
|
+
materials: List[
|
321
|
+
Union[
|
322
|
+
EnergyMaterial, EnergyMaterialNoMass, EnergyMaterialVegetation,
|
323
|
+
EnergyWindowMaterialGlazing, EnergyWindowMaterialSimpleGlazSys,
|
324
|
+
EnergyWindowMaterialGas, EnergyWindowMaterialGasMixture,
|
325
|
+
EnergyWindowMaterialGasCustom, EnergyWindowFrame,
|
326
|
+
EnergyWindowMaterialBlind, EnergyWindowMaterialShade
|
327
|
+
]
|
328
|
+
] = Field(
|
329
|
+
default=None,
|
330
|
+
description='A list of all unique materials in the model. This includes '
|
331
|
+
'materials needed to make the Model constructions.'
|
332
|
+
)
|
333
|
+
|
334
|
+
hvacs: List[
|
335
|
+
Union[
|
336
|
+
IdealAirSystemAbridged, VAV, PVAV, PSZ, PTAC, ForcedAirFurnace,
|
337
|
+
FCUwithDOASAbridged, WSHPwithDOASAbridged, VRFwithDOASAbridged,
|
338
|
+
RadiantwithDOASAbridged,
|
339
|
+
FCU, WSHP, VRF, Baseboard, EvaporativeCooler, Residential,
|
340
|
+
WindowAC, GasUnitHeater, Radiant,
|
341
|
+
DetailedHVAC
|
342
|
+
]
|
343
|
+
] = Field(
|
344
|
+
default=None,
|
345
|
+
description='List of all unique HVAC systems in the Model.'
|
346
|
+
)
|
347
|
+
|
348
|
+
shws: List[SHWSystem] = Field(
|
349
|
+
default=None,
|
350
|
+
description='List of all unique Service Hot Water (SHW) systems in the Model.'
|
351
|
+
)
|
352
|
+
|
353
|
+
program_types: List[Union[ProgramTypeAbridged, ProgramType]] = Field(
|
354
|
+
default=None,
|
355
|
+
description='List of all unique ProgramTypes in the Model.'
|
356
|
+
)
|
357
|
+
|
358
|
+
schedules: List[Union[ScheduleRulesetAbridged, ScheduleFixedIntervalAbridged,
|
359
|
+
ScheduleRuleset, ScheduleFixedInterval]] = Field(
|
360
|
+
default=None,
|
361
|
+
description='A list of all unique schedules in the model. This includes '
|
362
|
+
'schedules across all HVAC systems, ProgramTypes, Rooms, and Shades.'
|
363
|
+
)
|
364
|
+
|
365
|
+
schedule_type_limits: List[ScheduleTypeLimit] = Field(
|
366
|
+
default=None,
|
367
|
+
description='A list of all unique ScheduleTypeLimits in the model. This '
|
368
|
+
'all ScheduleTypeLimits needed to make the Model schedules.'
|
369
|
+
)
|
370
|
+
|
371
|
+
ventilation_simulation_control: VentilationSimulationControl = Field(
|
372
|
+
default=None,
|
373
|
+
description='An optional parameter to define the global parameters for '
|
374
|
+
'a ventilation cooling.'
|
375
|
+
)
|
376
|
+
|
377
|
+
electric_load_center: ElectricLoadCenter = Field(
|
378
|
+
default=None,
|
379
|
+
description='An optional parameter object that defines the properties '
|
380
|
+
'of the model electric loads center that manages on site electricity '
|
381
|
+
'generation and conversion.'
|
382
|
+
)
|