Skip to content

Commit

Permalink
fix(room): Ensure Room is_conditioned also checks the Setpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Apr 26, 2024
1 parent 856c864 commit 61a16c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion honeybee_energy/properties/room.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ def internal_masses(self, value):
@property
def is_conditioned(self):
"""Boolean to note whether the Room is conditioned."""
return self._hvac is not None
return self._hvac is not None and self.setpoint is not None

@property
def has_overridden_loads(self):
Expand Down

0 comments on commit 61a16c1

Please sign in to comment.