Skip to content

Commit

Permalink
fix: correct flow heat constraint expression in REFLOSystemCostingData
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharybinger committed Dec 9, 2024
1 parent 08b763b commit 42e6491
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -761,8 +761,7 @@ def build_integrated_costs(self):
# == self.aggregate_flow_heat_purchased - self.aggregate_flow_heat_sold
# )
self.aggregate_flow_heat_constraint = pyo.Constraint(
expr=self.aggregate_flow_heat
== self.aggregate_flow_heat_purchased
expr=self.aggregate_flow_heat == self.aggregate_flow_heat_purchased
)

def initialize_build(self):
Expand Down

0 comments on commit 42e6491

Please sign in to comment.