Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(simulation): Add a property for unmet_setpoint_tolerance #379

Merged
merged 1 commit into from
Dec 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading