Skip to content

Commit

Permalink
fix(simulation): Add a property for bypass_efficiency_sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey authored and Chris Mackey committed Feb 23, 2024
1 parent 0fd85f9 commit 1f2cb83
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 @@ -353,6 +353,17 @@ class SizingParameter(NoExtraBaseModel):
'Laboratory, Courthouse.'
)

bypass_efficiency_sizing: bool = Field(
default=False,
description='A boolean to indicate whether the efficiency standard should '
'trigger an sizing run that sets the efficiencies of all HVAC equipment in '
'the Model (False) or the standard should only be written into the OSM and '
'the sizing run should be bypassed (True). Bypassing the sizing run is useful '
'when you only want to check that the overall HVAC system architecture is '
'correct and you do not want to wait the extra time that it takes to run the '
'sizing calculation.'
)


class TerrianTypes(str, Enum):
ocean = 'Ocean'
Expand Down

0 comments on commit 1f2cb83

Please sign in to comment.