Skip to content

Commit

Permalink
fix(simulation): Add a property for unmet_setpoint_tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey authored and Chris Mackey committed Dec 2, 2023
1 parent 94be497 commit 6094e87
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions honeybee_schema/energy/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,17 @@ class SimulationOutput(NoExtraBaseModel):
description='A list of EnergyPlus summary report names as strings.'
)

unmet_setpoint_tolerance: float = Field(
1.11,
ge=0,
le=10,
description='A number in degrees Celsius for the difference that '
'the zone conditions must be from the thermostat setpoint in order '
'for the setpoint to be considered unmet. This will affect how unmet '
'hours are reported in the output. ASHRAE 90.1 uses a tolerance of '
'1.11C, which is equivalent to 1.8F.'
)


class SimulationControl(NoExtraBaseModel):
"""Used to specify which types of calculations to run."""
Expand Down

0 comments on commit 6094e87

Please sign in to comment.