GQL Statement
insulation_value_present =         QUERY_PRESENT(-> { AREA(typical_useful_demand_for_space_heating_buildings_future) });
insulation_value_future =          QUERY_FUTURE(-> { AREA(typical_useful_demand_for_space_heating_buildings_future) });
buildings_insulaton_costs_high =   DIVIDE(16000.0,(220.0 - 118.0));
number_of_buildings_future =       V(buildings_useful_demand_for_space_heating_buildings_future_after_solar_thermal, number_of_units);
IF(
  GRAPH().future?,
  -> {
    PRODUCT(
      PRODUCT(
        buildings_insulaton_costs_high,
        MAX((insulation_value_present - insulation_value_future),0)
      ),
      number_of_buildings_future
    )
  },
  0.0
)
Result
| 2019 | 0.0 | euro | 
| 2050 | 0.0 | euro | 
Description
This query calculates the insulation costs for buildings_future
The calculated costs are only updated for the future year, in the present year 
the insulation costs are assumed to be zero. This is done with IF-statements.
See https://docs.energytransitionmodel.com/main/insulation/#insulation-costs
 
Characteristics
| Groups |  | 
| Unit | euro | 
| File path | /app/tmp/etsource/gqueries/general/costs/mece_costs/1_building_and_installations/insulation/buildings/costs_of_insulation_buildings_future.gql | 
References