Skip to content

Commit

Permalink
fix(energy_default): Generalize the Control TypeLimit to be more useful
Browse files Browse the repository at this point in the history
I realized that there will probably be a few places where having a typelimit for integers will be useful (the most immediate one is dynamic constructions. So I'm making this change now before the next stable release where we plan to have everyone update their standards anyway.
  • Loading branch information
chriswmackey authored and Chris Mackey committed Jul 30, 2021
1 parent 85f31c4 commit 9b7f411
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions honeybee_standards/energy_default.json
Original file line number Diff line number Diff line change
Expand Up @@ -1672,11 +1672,13 @@
},
{
"type": "ScheduleTypeLimit",
"identifier": "Thermostat Control",
"upper_limit": 4.0,
"identifier": "Control Level",
"upper_limit": {
"type": "NoLimit"
},
"lower_limit": 0.0,
"numeric_type": "Discrete",
"unit_type": "Dimensionless"
}
"unit_type": "Control"
}
]
}

0 comments on commit 9b7f411

Please sign in to comment.