Skip to content

Commit dd16dae

Browse files
committed
style(zone): Add a new property for Room2D.zone
This is being commit with a style tag because it will officially be released simultaneously with the Honeybee Room.zone property. ladybug-tools/honeybee-schema#394
1 parent 2c8dfda commit dd16dae

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

dragonfly_schema/model.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,15 @@ class Room2D(IDdBaseModel):
123123
'Setting this to zero indicates that the room has no floor plenum.'
124124
)
125125

126+
zone: str = Field(
127+
default=None,
128+
description='Text string for for the zone identifier to which this Room2D '
129+
' belongs. Room2Ds sharing the same zone identifier are considered part of the '
130+
'same zone in a Building. If the zone identifier has not been specified, it will '
131+
'be the same as the Room2D identifier in the destination engine. Note that this '
132+
'property has no character restrictions.'
133+
)
134+
126135
boundary_conditions: List[
127136
Union[Ground, Outdoors, Surface, Adiabatic, OtherSideTemperature]
128137
] = Field(

0 commit comments

Comments
 (0)