mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
Added adjusted_heat_demand to Recommnendations model
This commit is contained in:
parent
5d45243e99
commit
4fb479d3c1
2 changed files with 1 additions and 8 deletions
|
|
@ -22,6 +22,7 @@ class Recommendation(Base):
|
|||
new_u_value = Column(Float)
|
||||
sap_points = Column(Float)
|
||||
heat_demand = Column(Float)
|
||||
adjusted_heat_demand = Column(Float)
|
||||
co2_equivalent_savings = Column(Float)
|
||||
energy_savings = Column(Float)
|
||||
energy_cost_savings = Column(Float)
|
||||
|
|
|
|||
|
|
@ -221,12 +221,6 @@ class Recommendations:
|
|||
expected_heat_demand = property_instance.floor_area * (
|
||||
heat_phase_impact[heat_phase_impact["phase"] == max(heat_phase_impact["phase"])]["predictions"].values[0]
|
||||
)
|
||||
|
||||
expected_carbon = (
|
||||
carbon_phase_impact[carbon_phase_impact["phase"] == max(carbon_phase_impact["phase"])][
|
||||
"predictions"].values[0]
|
||||
)
|
||||
|
||||
starting_heat_demand = (
|
||||
float(property_instance.data["energy-consumption-current"]) * property_instance.floor_area
|
||||
)
|
||||
|
|
@ -234,8 +228,6 @@ class Recommendations:
|
|||
# This is the unadjusted resulting heat demand
|
||||
predicted_heat_demand_change = starting_heat_demand - expected_heat_demand
|
||||
|
||||
starting_carbon = float(property_instance.data["co2-emissions-current"])
|
||||
|
||||
# We don't want to adjust the heat demand for mechanical ventilation so we add it back on
|
||||
|
||||
# We adjust the heat demand figures to align to the UCL paper
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue