From 7fb8226e18118ed8d30de199b13e66cd08286be4 Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 19:01:17 +0200 Subject: [PATCH 01/13] Add validation spec for missing gqueries --- spec/query_validation_spec.rb | 52 +++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 spec/query_validation_spec.rb diff --git a/spec/query_validation_spec.rb b/spec/query_validation_spec.rb new file mode 100644 index 0000000000..b08ea120ab --- /dev/null +++ b/spec/query_validation_spec.rb @@ -0,0 +1,52 @@ +# frozen_string_literal: true + +require 'spec_helper' + +# Validates that GQL queries only reference keys that still exist. +# +# A query may refer to other documents through GQL functions, such as Q(...) +# which calls another query. When the referenced document is renamed or +# removed, the reference is left dangling. +# +# Each kind of reference is described by a ReferenceType, which knows the GQL +# function used to make the reference and the set of keys that are valid +# targets. New reference types (for example, node keys) can be added to +# REFERENCE_TYPES without changing the rest of the spec. +RSpec.describe 'Query validation' do + ReferenceType = Struct.new(:label, :function, :valid_keys, keyword_init: true) do + # Public: The keys referenced through this function in the given GQL body. + def referenced_keys(query) + query.to_s.scan(/\b#{function}\(\s*([a-z0-9_]+)\s*\)/).flatten.map(&:to_sym) + end + + # Public: The referenced keys which no longer point at an existing document. + def missing_keys(query) + referenced_keys(query).reject { |key| valid_keys.include?(key) } + end + end + + REFERENCE_TYPES = [ + ReferenceType.new( + label: 'query', + function: 'Q', + valid_keys: Atlas::Gquery.all.map(&:key).to_set + ) + ].freeze + + Atlas::Gquery.all.each do |gquery| + describe "Gquery: #{gquery.key}" do + REFERENCE_TYPES.each do |reference_type| + it "does not refer to any missing #{reference_type.label}" do + missing_keys = reference_type.missing_keys(gquery.query) + + messages = missing_keys.map do |missing_key| + "Query #{gquery.key} refers to missing " \ + "#{reference_type.label} #{missing_key}" + end + + expect(missing_keys).to(be_empty, messages.join("\n")) + end + end + end + end +end From d55558ca35012f895fbaf094c244b3e3921d95aa Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 19:17:23 +0200 Subject: [PATCH 02/13] Rephrase failure message --- spec/query_validation_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/query_validation_spec.rb b/spec/query_validation_spec.rb index b08ea120ab..ff2c7d3cf4 100644 --- a/spec/query_validation_spec.rb +++ b/spec/query_validation_spec.rb @@ -36,7 +36,7 @@ def missing_keys(query) Atlas::Gquery.all.each do |gquery| describe "Gquery: #{gquery.key}" do REFERENCE_TYPES.each do |reference_type| - it "does not refer to any missing #{reference_type.label}" do + it "references existing #{reference_type.label} keys" do missing_keys = reference_type.missing_keys(gquery.query) messages = missing_keys.map do |missing_key| From eb73cd15e7999827bb3a113862faf299a117ab33 Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 19:24:33 +0200 Subject: [PATCH 03/13] Fix typo in query --- .../supply/power/emissions_captured_power_non_biogenic.gql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gqueries/general/emissions/supply/power/emissions_captured_power_non_biogenic.gql b/gqueries/general/emissions/supply/power/emissions_captured_power_non_biogenic.gql index 0d7fb21f45..3e81349b44 100644 --- a/gqueries/general/emissions/supply/power/emissions_captured_power_non_biogenic.gql +++ b/gqueries/general/emissions/supply/power/emissions_captured_power_non_biogenic.gql @@ -1,3 +1,3 @@ - query = - Q(emssions_captured_power_total) - Q(emissions_captured_power_biogenic) -- unit = tonne \ No newline at end of file + Q(emissions_captured_power_total) - Q(emissions_captured_power_biogenic) +- unit = tonne From 2c5ceab2a24ca99ecb82113fea19dfff4683fb0b Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 19:29:06 +0200 Subject: [PATCH 04/13] Remove queries from the retired ETFlex module --- .../etflex/etflex_electricity_demand.gql | 9 ----- ...etflex_households_amount_of_appliances.gql | 2 - ...households_co2_emissions_per_household.gql | 6 --- .../etflex_households_cooling_demand.gql | 2 - ...etflex_households_electricity_fraction.gql | 12 ------ ...final_demand_electricity_per_household.gql | 2 - ...olds_final_demand_energy_per_household.gql | 5 --- ...final_demand_network_gas_per_household.gql | 5 --- ...flex_households_heat_demand_per_person.gql | 1 - .../etflex_households_heat_fraction.gql | 13 ------- ...x_households_heating_technology_in_use.gql | 11 ------ .../etflex_households_insulation_level.gql | 2 - ...ex_households_investment_per_household.gql | 15 -------- ..._households_lighting_technology_in_use.gql | 11 ------ .../etflex_households_monthly_energy_bill.gql | 10 ----- ...centage_renewable_energy_per_household.gql | 6 --- ...y_percentage_electricity_per_household.gql | 8 ---- ...wability_percentage_heat_per_household.gql | 15 -------- .../etflex_households_score.gql | 24 ------------ .../etflex_households_score_base.gql | 4 -- .../etflex_households_score_co2.gql | 4 -- .../etflex_households_score_costs.gql | 4 -- .../etflex_households_score_energy_use.gql | 4 -- .../etflex_households_score_investment.gql | 5 --- .../etflex_households_solar_pv_installed.gql | 2 - ...lex_households_solar_thermal_installed.gql | 2 - ...flex_score_renewable_energy_percentage.gql | 4 -- gqueries/modules/etflex/etflex_score.gql | 25 ------------ gqueries/modules/etflex/etflex_score_base.gql | 4 -- gqueries/modules/etflex/etflex_score_co2.gql | 4 -- gqueries/modules/etflex/etflex_score_cost.gql | 4 -- ...ore_deviations_from_reference_scenario.gql | 38 ------------------- .../etflex/etflex_score_electric_car.gql | 4 -- .../modules/etflex/etflex_score_greengas.gql | 4 -- .../modules/etflex/etflex_score_heatpump.gql | 5 --- .../modules/etflex/etflex_score_imbalance.gql | 4 -- gqueries/modules/etflex/etflex_score_led.gql | 4 -- .../etflex/etflex_score_nuclear_waste.gql | 4 -- .../etflex/etflex_score_reliability.gql | 5 --- .../etflex/etflex_score_renewability.gql | 4 -- .../etflex/number_of_electric_cars.gql | 2 - 41 files changed, 299 deletions(-) delete mode 100644 gqueries/modules/etflex/etflex_electricity_demand.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_amount_of_appliances.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_co2_emissions_per_household.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_cooling_demand.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_electricity_fraction.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_electricity_per_household.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_energy_per_household.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_network_gas_per_household.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_heat_demand_per_person.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_heat_fraction.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_heating_technology_in_use.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_insulation_level.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_investment_per_household.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_lighting_technology_in_use.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_monthly_energy_bill.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_percentage_renewable_energy_per_household.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_renewability_percentage_electricity_per_household.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_renewability_percentage_heat_per_household.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_score.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_score_base.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_score_co2.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_score_costs.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_score_energy_use.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_score_investment.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_solar_pv_installed.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_households_solar_thermal_installed.gql delete mode 100644 gqueries/modules/etflex/etflex_level_2/etflex_score_renewable_energy_percentage.gql delete mode 100644 gqueries/modules/etflex/etflex_score.gql delete mode 100644 gqueries/modules/etflex/etflex_score_base.gql delete mode 100644 gqueries/modules/etflex/etflex_score_co2.gql delete mode 100644 gqueries/modules/etflex/etflex_score_cost.gql delete mode 100644 gqueries/modules/etflex/etflex_score_deviations_from_reference_scenario.gql delete mode 100644 gqueries/modules/etflex/etflex_score_electric_car.gql delete mode 100644 gqueries/modules/etflex/etflex_score_greengas.gql delete mode 100644 gqueries/modules/etflex/etflex_score_heatpump.gql delete mode 100644 gqueries/modules/etflex/etflex_score_imbalance.gql delete mode 100644 gqueries/modules/etflex/etflex_score_led.gql delete mode 100644 gqueries/modules/etflex/etflex_score_nuclear_waste.gql delete mode 100644 gqueries/modules/etflex/etflex_score_reliability.gql delete mode 100644 gqueries/modules/etflex/etflex_score_renewability.gql delete mode 100644 gqueries/modules/etflex/number_of_electric_cars.gql diff --git a/gqueries/modules/etflex/etflex_electricity_demand.gql b/gqueries/modules/etflex/etflex_electricity_demand.gql deleted file mode 100644 index b077a2c45f..0000000000 --- a/gqueries/modules/etflex/etflex_electricity_demand.gql +++ /dev/null @@ -1,9 +0,0 @@ - -- query = - SUM( - V(GROUP(final_demand_group),input_of_electricity), - V(GROUP(non_final_electricity_demand_converters),input_of_electricity), - V(energy_power_hv_network_loss,demand) - ) - -- unit = MJ diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_amount_of_appliances.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_amount_of_appliances.gql deleted file mode 100644 index 32fe2f908c..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_amount_of_appliances.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = V(households_final_demand_for_appliances_electricity, demand) / AREA(number_of_residences) / MJ_PER_KWH -- unit = kwh diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_co2_emissions_per_household.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_co2_emissions_per_household.gql deleted file mode 100644 index 2b733b03e0..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_co2_emissions_per_household.gql +++ /dev/null @@ -1,6 +0,0 @@ -- query = - SUM ( - V (households_final_demand_network_gas, 'demand * weighted_carrier_co2_per_mj'), - V (households_final_demand_electricity, 'demand * weighted_carrier_co2_per_mj') - ) / AREA (number_of_residences) / KG_PER_TONNE -- unit = tonnes diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_cooling_demand.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_cooling_demand.gql deleted file mode 100644 index 3df4815836..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_cooling_demand.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = INPUT_VALUE(households_useful_demand_for_cooling) -- unit = %/year diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_electricity_fraction.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_electricity_fraction.gql deleted file mode 100644 index 218990d1f9..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_electricity_fraction.gql +++ /dev/null @@ -1,12 +0,0 @@ -# Fraction of final demand of electricity EXCLUDING use for heating - -- unit = MJ -- query = - DIVIDE( - V(households_final_demand_electricity, demand) - - V(households_final_demand_for_space_heating_electricity, demand) - - V(households_final_demand_for_hot_water_electricity, demand), - V(households_final_demand_electricity, demand) + - V(households_final_demand_for_space_heating_network_gas, demand) + - V(households_final_demand_for_hot_water_network_gas, demand) - ) diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_electricity_per_household.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_electricity_per_household.gql deleted file mode 100644 index 2781efdcca..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_electricity_per_household.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = V(households_final_demand_electricity, demand) / AREA(number_of_residences) / MJ_PER_KWH -- unit = kwh diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_energy_per_household.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_energy_per_household.gql deleted file mode 100644 index 4cb5f21ba0..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_energy_per_household.gql +++ /dev/null @@ -1,5 +0,0 @@ -- query = - SUM( - Q(etflex_households_final_demand_electricity_per_household), - Q(etflex_households_final_demand_network_gas_per_household) - ) diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_network_gas_per_household.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_network_gas_per_household.gql deleted file mode 100644 index 5d996d643e..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_final_demand_network_gas_per_household.gql +++ /dev/null @@ -1,5 +0,0 @@ -# calculates the final demand of gas in an average household by dividing the average -# kWh's of a household by 10 (which is about the amount of kWh's in 1 m3 gas )' - -- query = V(households_final_demand_network_gas, demand) / AREA(number_of_residences) / MJ_PER_KWH / 10 -- unit = m3 diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_heat_demand_per_person.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_heat_demand_per_person.gql deleted file mode 100644 index 3a943d4560..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_heat_demand_per_person.gql +++ /dev/null @@ -1 +0,0 @@ -- query = INPUT_VALUE(households_useful_demand_heat_per_person) diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_heat_fraction.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_heat_fraction.gql deleted file mode 100644 index 084414ec2b..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_heat_fraction.gql +++ /dev/null @@ -1,13 +0,0 @@ -# Fraction of final demand of electricity and gas used for heating - -- unit = MJ -- query = - DIVIDE( - V(households_final_demand_for_space_heating_network_gas, demand) + - V(households_final_demand_for_hot_water_network_gas, demand) + - V(households_final_demand_for_space_heating_electricity, demand) + - V(households_final_demand_for_hot_water_electricity, demand), - V(households_final_demand_electricity, demand) + - V(households_final_demand_for_space_heating_network_gas, demand) + - V(households_final_demand_for_hot_water_network_gas, demand) - ) diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_heating_technology_in_use.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_heating_technology_in_use.gql deleted file mode 100644 index a2cf012e72..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_heating_technology_in_use.gql +++ /dev/null @@ -1,11 +0,0 @@ -- query = - IF(INPUT_VALUE(households_heater_hybrid_heatpump_air_water_electricity_share) > 50, - "hybrid_heatpump", - IF(INPUT_VALUE(households_heater_combined_network_gas_share) > 50, - "combi_boiler", - IF(INPUT_VALUE(households_heater_heatpump_ground_water_electricity_share) > 50, - "heatpump_ground", - "error" - ) - ) - ) diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_insulation_level.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_insulation_level.gql deleted file mode 100644 index cdaa1a2e0b..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_insulation_level.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = INPUT_VALUE(households_insulation_level_terraced_houses) -- unit = percentage diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_investment_per_household.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_investment_per_household.gql deleted file mode 100644 index 8d2e315913..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_investment_per_household.gql +++ /dev/null @@ -1,15 +0,0 @@ -# Investment costs for all relevant technologies -# NOTE: use of the share of solar thermal panels in the scenario causes the present score -# to change as well. - -- query = - SUM ( - V(households_space_heater_combined_network_gas,"number_of_units * initial_investment"), - V(households_space_heater_heatpump_ground_water_electricity,"number_of_units * initial_investment"), - V(households_space_heater_hybrid_heatpump_air_water_electricity, "number_of_units * initial_investment"), - V(households_cooling_airconditioning_electricity,"number_of_units * initial_investment"), - V(households_solar_pv_solar_radiation,"number_of_units * initial_investment"), - V(households_water_heater_solar_thermal,"initial_investment") * (INPUT_VALUE(households_water_heater_solar_thermal_share) / 50.0) * AREA(number_of_residences), - Q(costs_of_insulation_terraced_houses) - ) / AREA(number_of_residences) -- unit = euro diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_lighting_technology_in_use.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_lighting_technology_in_use.gql deleted file mode 100644 index 8ca7745033..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_lighting_technology_in_use.gql +++ /dev/null @@ -1,11 +0,0 @@ -- query = - IF(INPUT_VALUE(households_lighting_incandescent_electricity_share) > 45, - "incandescent_lighting", - IF(INPUT_VALUE(households_lighting_efficient_fluorescent_electricity_share) > 45, - "fluorescent_lighting", - IF(INPUT_VALUE(households_lighting_led_electricity_share) > 45, - "led_lighting", - "error" - ) - ) - ) diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_monthly_energy_bill.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_monthly_energy_bill.gql deleted file mode 100644 index 3ff1638e41..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_monthly_energy_bill.gql +++ /dev/null @@ -1,10 +0,0 @@ -# Monthly energy bill -# Assumes 10 kWh per cubic meter of gas at a cost of 60 ct/m3 -# and 22 ct/kWh for electricity - -- query = - SUM ( - V(households_final_demand_network_gas, "demand / MJ_PER_KWH / 10 * 0.6"), - (V(households_final_demand_electricity, demand) - V(households_solar_pv_solar_radiation, output_of_electricity)) / MJ_PER_KWH * 0.22, - ) / AREA(number_of_residences) / MONTHS_PER_YEAR -- unit = euro diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_percentage_renewable_energy_per_household.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_percentage_renewable_energy_per_household.gql deleted file mode 100644 index 4d277c3347..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_percentage_renewable_energy_per_household.gql +++ /dev/null @@ -1,6 +0,0 @@ -# Percentage of renewable energy used in a household - -- query = - Q(etflex_households_renewability_percentage_electricity_per_household) * Q(etflex_households_electricity_fraction) + - Q(etflex_households_renewability_percentage_heat_per_household) * Q(etflex_households_heat_fraction) -- unit = % diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_renewability_percentage_electricity_per_household.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_renewability_percentage_electricity_per_household.gql deleted file mode 100644 index f68bf76472..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_renewability_percentage_electricity_per_household.gql +++ /dev/null @@ -1,8 +0,0 @@ -# Percentage of renewable electricity produced in a household (100 * production / final demand) - -- query = - DIVIDE( - V(households_solar_pv_solar_radiation, output_of_electricity), - V(households_final_demand_electricity, demand) - ) * 100 -- unit = % diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_renewability_percentage_heat_per_household.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_renewability_percentage_heat_per_household.gql deleted file mode 100644 index 575f6ebef4..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_renewability_percentage_heat_per_household.gql +++ /dev/null @@ -1,15 +0,0 @@ -# Percentage of renewable heat produced in a household (100 * production / useful_demand) - -- query = - DIVIDE( - SUM( - V(households_water_heater_solar_thermal, output_of_useable_heat), - V(households_space_heater_heatpump_ground_water_electricity, "output_of_useable_heat * sustainability_share"), - V(households_space_heater_hybrid_heatpump_air_water_electricity, "output_of_useable_heat * sustainability_share") - ), - V(households_useful_demand_hot_water, - households_useful_demand_for_space_heating_after_insulation, - demand - ).sum - ) * 100 -- unit = % diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_score.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_score.gql deleted file mode 100644 index f003405bb7..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_score.gql +++ /dev/null @@ -1,24 +0,0 @@ -# Total score calculated for ETFlex L2. -# We start of with 950 points (see base) and give penalties or bonus points -# -# * CO2: penalty -# * Investment: penalty -# * Monthly Bill (costs): penalty -# * Energy use: penalty -# * renewable energy production: bonus -# -# NOTE: present score can change if solar thermal panels are installed. -# This is due to the investment calculations for this technology. - -- query = - MAX(0, - SUM( - Q(etflex_households_score_base), - Q(etflex_households_score_co2), - Q(etflex_households_score_investment), - Q(etflex_households_score_costs), - Q(etflex_households_score_energy_use), - Q(etflex_score_renewable_energy_percentage) - ) - ) -- unit = # diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_score_base.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_score_base.gql deleted file mode 100644 index 9164bb4124..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_score_base.gql +++ /dev/null @@ -1,4 +0,0 @@ -# The base score is 950 - -- query = 920 -- unit = # diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_score_co2.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_score_co2.gql deleted file mode 100644 index 41d7a601a6..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_score_co2.gql +++ /dev/null @@ -1,4 +0,0 @@ -# total co2 emissions for one house in MTon (=1billion kg) - -- query = -Q(etflex_households_co2_emissions_per_household) * 50 -- unit = # diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_score_costs.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_score_costs.gql deleted file mode 100644 index a21990e233..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_score_costs.gql +++ /dev/null @@ -1,4 +0,0 @@ -# Penalty for a high monthly energy bill (gas and electricity) - -- query = - 2.0 * Q(etflex_households_monthly_energy_bill) -- unit = # diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_score_energy_use.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_score_energy_use.gql deleted file mode 100644 index e26a96d07a..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_score_energy_use.gql +++ /dev/null @@ -1,4 +0,0 @@ -# Penalty for energy use (gas and electricity) - -- query = - 0.01 * Q(etflex_households_final_demand_energy_per_household) -- unit = # diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_score_investment.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_score_investment.gql deleted file mode 100644 index 7e25ea1dfe..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_score_investment.gql +++ /dev/null @@ -1,5 +0,0 @@ -# Penalty for investment costs -# NOTE: this can change the present score if solar thermal panels are touched. - -- query = - 0.0058 * Q(etflex_households_investment_per_household) -- unit = # diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_solar_pv_installed.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_solar_pv_installed.gql deleted file mode 100644 index 89ed8b4999..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_solar_pv_installed.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = INPUT_VALUE(households_solar_pv_solar_radiation_market_penetration) -- unit = factor diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_households_solar_thermal_installed.gql b/gqueries/modules/etflex/etflex_level_2/etflex_households_solar_thermal_installed.gql deleted file mode 100644 index 787b6282bd..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_households_solar_thermal_installed.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = INPUT_VALUE(households_water_heater_solar_thermal_share) -- unit = factor diff --git a/gqueries/modules/etflex/etflex_level_2/etflex_score_renewable_energy_percentage.gql b/gqueries/modules/etflex/etflex_level_2/etflex_score_renewable_energy_percentage.gql deleted file mode 100644 index a1b140a832..0000000000 --- a/gqueries/modules/etflex/etflex_level_2/etflex_score_renewable_energy_percentage.gql +++ /dev/null @@ -1,4 +0,0 @@ -# Bonus for a high percentage renewable energy - -- query = 2.0 * Q(etflex_households_percentage_renewable_energy_per_household) -- unit = # diff --git a/gqueries/modules/etflex/etflex_score.gql b/gqueries/modules/etflex/etflex_score.gql deleted file mode 100644 index 743ed0c665..0000000000 --- a/gqueries/modules/etflex/etflex_score.gql +++ /dev/null @@ -1,25 +0,0 @@ -# Total score calculated for ETFlex. -# We start of with ~1000 points (see base) and give penalties -# -# * cost: penalty -# * co2: penalty -# * imbalance: penalty -# * reliability: penalty -# * renewability: penalty - - -- query = - MIN( - MAX(0, - SUM( - Q(etflex_score_base), - Q(etflex_score_cost), - Q(etflex_score_co2), - Q(etflex_score_imbalance), - Q(etflex_score_reliability), - Q(etflex_score_renewability) - ) - ), - 999 - ) -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_base.gql b/gqueries/modules/etflex/etflex_score_base.gql deleted file mode 100644 index 5cb5fd4e77..0000000000 --- a/gqueries/modules/etflex/etflex_score_base.gql +++ /dev/null @@ -1,4 +0,0 @@ -# The base score is 1000 - -- query = 1000 -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_co2.gql b/gqueries/modules/etflex/etflex_score_co2.gql deleted file mode 100644 index 66854924b6..0000000000 --- a/gqueries/modules/etflex/etflex_score_co2.gql +++ /dev/null @@ -1,4 +0,0 @@ -# total co2 emissions in MTon (=1billion kg), times factor 2 - -- query = -2 * Q(total_co2_emissions) / 10**9 -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_cost.gql b/gqueries/modules/etflex/etflex_score_cost.gql deleted file mode 100644 index b32dceedb4..0000000000 --- a/gqueries/modules/etflex/etflex_score_cost.gql +++ /dev/null @@ -1,4 +0,0 @@ -# 3.0 times the costs in billions - -- query = -3 * Q(total_costs) / 10**9 -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_deviations_from_reference_scenario.gql b/gqueries/modules/etflex/etflex_score_deviations_from_reference_scenario.gql deleted file mode 100644 index 743749d872..0000000000 --- a/gqueries/modules/etflex/etflex_score_deviations_from_reference_scenario.gql +++ /dev/null @@ -1,38 +0,0 @@ -# We have defined a scenario that should be the ideal candidate for this -# for every slider that is away from its reference scenario counterpart, -# maximally ONE (extra) penalty point is given -# -# Reference values: -# -# DEMAND -# * Insulation: 67% -# * Electric cars: 75% -# * LED: 90% -# * Electric trucks: 75% -# * Heat pump: 50% -# * Solar water heater: 25% -# -# SUPPLY -# * Coal plants: 0 units ~ 0 MW (800 MW / unit) -# * Gas plants: 6 units ~ 3990 MW (665 MW / unit) -# * Nuclear: 0 units ~ 0 MW (1650 MW / unit) -# * Wind turbines: 1600 units ~ 4800 MW (3 MW / unit) -# * Solar: 41% -# * Green gas: 3% - -- query = - - [ - 1.0e-4 * (INPUT_VALUE(households_insulation_level_terraced_houses) - 67.0)**2, - 1.0e-4 * (INPUT_VALUE(transport_car_using_electricity_share) - 75.0)**2, - 1.0e-4 * (INPUT_VALUE(households_lighting_led_electricity_share) - 90.0)**2, - 1.0e-4 * (INPUT_VALUE(transport_truck_using_electricity_share) - 75.0)**2, - 1.0e-4 * (INPUT_VALUE(households_heater_heatpump_ground_water_electricity_share) - 50.0)**2, - 1.0e-4 * (INPUT_VALUE(households_water_heater_solar_thermal_share) - 25.0)**2, - 0.01 * (DIVIDE(INPUT_VALUE(capacity_of_energy_power_ultra_supercritical_coal), V(energy_power_ultra_supercritical_coal, electricity_output_capacity)) - 0.0)**2, - 0.027778 * (DIVIDE(INPUT_VALUE(capacity_of_energy_power_combined_cycle_ccs_network_gas_dispatchable), V(energy_power_combined_cycle_ccs_network_gas_dispatchable, electricity_output_capacity)) - 6.0)**2, - 0.25 * (DIVIDE(INPUT_VALUE(capacity_of_energy_power_nuclear_gen3_uranium_oxide), V(energy_power_nuclear_gen3_uranium_oxide, electricity_output_capacity)) - 0.0)**2, - 3.90625e-7 * (DIVIDE(INPUT_VALUE(capacity_of_energy_power_wind_turbine_offshore), V(energy_power_wind_turbine_offshore, electricity_output_capacity)) - 1600.0)**2, - 1.0e-4 * (INPUT_VALUE(households_solar_pv_solar_radiation_market_penetration) - 41.0)**2, - 1.0e-4 * (INPUT_VALUE(green_gas_total_share) - 3.0)**2 - ].sum -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_electric_car.gql b/gqueries/modules/etflex/etflex_score_electric_car.gql deleted file mode 100644 index 1b1f517401..0000000000 --- a/gqueries/modules/etflex/etflex_score_electric_car.gql +++ /dev/null @@ -1,4 +0,0 @@ -# - (0.03 points for each percentage of electric car)^2 - -- query = -3 * (V(transport_car_using_electricity,share_of_transport_useful_demand_cars))**2 -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_greengas.gql b/gqueries/modules/etflex/etflex_score_greengas.gql deleted file mode 100644 index aa7e853195..0000000000 --- a/gqueries/modules/etflex/etflex_score_greengas.gql +++ /dev/null @@ -1,4 +0,0 @@ -# - (0.4 points for each percentage point of green gas)^2 - -- query = -900 * Q(share_of_sustainable_gas_in_gas_network)**2 -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_heatpump.gql b/gqueries/modules/etflex/etflex_score_heatpump.gql deleted file mode 100644 index fe8815f3a3..0000000000 --- a/gqueries/modules/etflex/etflex_score_heatpump.gql +++ /dev/null @@ -1,5 +0,0 @@ -# - (0.015 points for each percentage of air heatpump)^2 - -- query = - -15*V(households_space_heater_heatpump_air_water_electricity_aggregator,share_of_households_useful_demand_for_space_heating_after_insulation)**2 -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_imbalance.gql b/gqueries/modules/etflex/etflex_score_imbalance.gql deleted file mode 100644 index 3a0d8010dc..0000000000 --- a/gqueries/modules/etflex/etflex_score_imbalance.gql +++ /dev/null @@ -1,4 +0,0 @@ -# - ((absolute difference between production and demand of electricity)^2)/50 - -- query = -(((Q(total_electricity_produced) - Q(etflex_electricity_demand)) / BILLIONS)**2)/50 -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_led.gql b/gqueries/modules/etflex/etflex_score_led.gql deleted file mode 100644 index d2383076d0..0000000000 --- a/gqueries/modules/etflex/etflex_score_led.gql +++ /dev/null @@ -1,4 +0,0 @@ -# - (0.02 points for each percentage of LEDs)^2 - -- query = -2 * V(households_lighting_led_electricity,share_of_households_useful_demand_light)**2 -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_nuclear_waste.gql b/gqueries/modules/etflex/etflex_score_nuclear_waste.gql deleted file mode 100644 index 585cbaa95e..0000000000 --- a/gqueries/modules/etflex/etflex_score_nuclear_waste.gql +++ /dev/null @@ -1,4 +0,0 @@ -# 5x the number of nuclear power plants (because of nuclear waste). - -- query = -5 * V(energy_power_nuclear_gen3_uranium_oxide,number_of_units) -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_reliability.gql b/gqueries/modules/etflex/etflex_score_reliability.gql deleted file mode 100644 index 4742c147c7..0000000000 --- a/gqueries/modules/etflex/etflex_score_reliability.gql +++ /dev/null @@ -1,5 +0,0 @@ -# When your security of supply is in danger, you can get a lot of penalty -# namely a thousand points. - -- query = -1000 * (DIVIDE(Q(loss_of_load_expectation), 8760)) ** 2 -- unit = # diff --git a/gqueries/modules/etflex/etflex_score_renewability.gql b/gqueries/modules/etflex/etflex_score_renewability.gql deleted file mode 100644 index 65a02688f9..0000000000 --- a/gqueries/modules/etflex/etflex_score_renewability.gql +++ /dev/null @@ -1,4 +0,0 @@ -# plus 2x the percentage of maximum attainable renewability - -- query = 200 * Q(renewability) -- unit = # diff --git a/gqueries/modules/etflex/number_of_electric_cars.gql b/gqueries/modules/etflex/number_of_electric_cars.gql deleted file mode 100644 index 2deaf49d69..0000000000 --- a/gqueries/modules/etflex/number_of_electric_cars.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = VALUE(transport_car_using_electricity , number_of_units) -- unit = number From e26a2d6534a7aca65992ffbc13cd135d731ac1ae Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 19:35:45 +0200 Subject: [PATCH 05/13] Remove redundant query This query was no longer used anywhere --- ...ot_water_distribution_to_industry_in_liquid_fuels_sankey.gql | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 gqueries/output_elements/output_series/liquid_fuels_sankey_189/steam_hot_water_distribution_to_industry_in_liquid_fuels_sankey.gql diff --git a/gqueries/output_elements/output_series/liquid_fuels_sankey_189/steam_hot_water_distribution_to_industry_in_liquid_fuels_sankey.gql b/gqueries/output_elements/output_series/liquid_fuels_sankey_189/steam_hot_water_distribution_to_industry_in_liquid_fuels_sankey.gql deleted file mode 100644 index 1dcb62bd5b..0000000000 --- a/gqueries/output_elements/output_series/liquid_fuels_sankey_189/steam_hot_water_distribution_to_industry_in_liquid_fuels_sankey.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = Q(steam_hot_water_distribution_to_industry) -- unit = PJ \ No newline at end of file From 939b060c452cefc773972695dcd9c0d441b862fc Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 19:38:34 +0200 Subject: [PATCH 06/13] Remove redundant query This query referred p2h for households which is no longer a technology in the model --- .../user_sortable/user_sortable_power_to_heat_capacity.gql | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 gqueries/general/merit/user_sortable/user_sortable_power_to_heat_capacity.gql diff --git a/gqueries/general/merit/user_sortable/user_sortable_power_to_heat_capacity.gql b/gqueries/general/merit/user_sortable/user_sortable_power_to_heat_capacity.gql deleted file mode 100644 index 4139c0a8d0..0000000000 --- a/gqueries/general/merit/user_sortable/user_sortable_power_to_heat_capacity.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = Q(households_flexibility_p2h_electricity_capacity) -- unit = MW From e167dc46bc3eb158bd183ff7b18b7f69a4979810 Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 19:52:34 +0200 Subject: [PATCH 07/13] Replace outdated bio-oil with correct bionaphtha query reference Bio-oil in output of industry transformation has been changed to bionaphtha but this query had not yet been updated accordingly --- ...ce_of_biomass_products_industry_transformation_in_sankey.gql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gqueries/output_elements/output_series/sankey/crude_oil_in_source_of_biomass_products_industry_transformation_in_sankey.gql b/gqueries/output_elements/output_series/sankey/crude_oil_in_source_of_biomass_products_industry_transformation_in_sankey.gql index bf274dfee0..cb29b266e5 100644 --- a/gqueries/output_elements/output_series/sankey/crude_oil_in_source_of_biomass_products_industry_transformation_in_sankey.gql +++ b/gqueries/output_elements/output_series/sankey/crude_oil_in_source_of_biomass_products_industry_transformation_in_sankey.gql @@ -4,7 +4,7 @@ - query = SUM( Q(crude_oil_in_source_of_greengas_industry_transformation_in_sankey), - Q(crude_oil_in_source_of_bio_oil_industry_transformation_in_sankey), + Q(crude_oil_in_source_of_bionaphtha_industry_transformation_in_sankey), Q(crude_oil_in_source_of_biodiesel_industry_transformation_in_sankey), Q(crude_oil_in_source_of_bio_kerosene_industry_transformation_in_sankey) ) From 57109997c7ee24cb68a6ae88dfcc71d6dbc89769 Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 19:56:36 +0200 Subject: [PATCH 08/13] Remove outdated query --- .../hydrogen_production/hydrogen_demand_hydrogen_production.gql | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 gqueries/output_elements/output_series/hydrogen_production/hydrogen_demand_hydrogen_production.gql diff --git a/gqueries/output_elements/output_series/hydrogen_production/hydrogen_demand_hydrogen_production.gql b/gqueries/output_elements/output_series/hydrogen_production/hydrogen_demand_hydrogen_production.gql deleted file mode 100644 index fa19224454..0000000000 --- a/gqueries/output_elements/output_series/hydrogen_production/hydrogen_demand_hydrogen_production.gql +++ /dev/null @@ -1,2 +0,0 @@ -- query = Q(hydrogen_demand_curve) -- unit = curve \ No newline at end of file From d4399881cc14690c59dfc5f3dadd258ebe2d7d52 Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 20:01:02 +0200 Subject: [PATCH 09/13] Retire investment table queries The investment table has been hidden in ETModel for several years because of the cost data export introduction. Thetable can be retired. Query regeneration can still be done on modeling experiments repo --- ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...thermal_delta_in_investment_cost_table.gql | 7 - ...hermal_future_in_investment_cost_table.gql | 4 - ...ermal_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...diation_delta_in_investment_cost_table.gql | 7 - ...iation_future_in_investment_cost_table.gql | 4 - ...ation_present_in_investment_cost_table.gql | 4 - ...er_coal_delta_in_investment_cost_table.gql | 7 - ...r_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...thermal_delta_in_investment_cost_table.gql | 7 - ...hermal_future_in_investment_cost_table.gql | 4 - ...ermal_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...biomass_delta_in_investment_cost_table.gql | 7 - ...iomass_future_in_investment_cost_table.gql | 4 - ...omass_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ..._biogas_delta_in_investment_cost_table.gql | 7 - ...biogas_future_in_investment_cost_table.gql | 4 - ...iogas_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...ste_mix_delta_in_investment_cost_table.gql | 7 - ...te_mix_future_in_investment_cost_table.gql | 4 - ...e_mix_present_in_investment_cost_table.gql | 4 - ...ste_mix_delta_in_investment_cost_table.gql | 7 - ...te_mix_future_in_investment_cost_table.gql | 4 - ...e_mix_present_in_investment_cost_table.gql | 4 - ...al_coal_delta_in_investment_cost_table.gql | 7 - ...l_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ng_coal_delta_in_investment_cost_table.gql | 7 - ...g_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...lignite_delta_in_investment_cost_table.gql | 7 - ...ignite_future_in_investment_cost_table.gql | 4 - ...gnite_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...biomass_delta_in_investment_cost_table.gql | 7 - ...iomass_future_in_investment_cost_table.gql | 4 - ...omass_present_in_investment_cost_table.gql | 4 - ...biomass_delta_in_investment_cost_table.gql | 7 - ...iomass_future_in_investment_cost_table.gql | 4 - ...omass_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...er_coal_delta_in_investment_cost_table.gql | 7 - ...r_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...ste_mix_delta_in_investment_cost_table.gql | 7 - ...te_mix_future_in_investment_cost_table.gql | 4 - ...e_mix_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...thermal_delta_in_investment_cost_table.gql | 7 - ...hermal_future_in_investment_cost_table.gql | 4 - ...ermal_present_in_investment_cost_table.gql | 4 - ...thermal_delta_in_investment_cost_table.gql | 7 - ...hermal_future_in_investment_cost_table.gql | 4 - ...ermal_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...cs_coal_delta_in_investment_cost_table.gql | 7 - ...s_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...tchable_delta_in_investment_cost_table.gql | 7 - ...chable_future_in_investment_cost_table.gql | 4 - ...hable_present_in_investment_cost_table.gql | 4 - ...le_coal_delta_in_investment_cost_table.gql | 7 - ...e_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...tchable_delta_in_investment_cost_table.gql | 7 - ...chable_future_in_investment_cost_table.gql | 4 - ...hable_present_in_investment_cost_table.gql | 4 - ...ust_run_delta_in_investment_cost_table.gql | 7 - ...st_run_future_in_investment_cost_table.gql | 4 - ...t_run_present_in_investment_cost_table.gql | 4 - ..._diesel_delta_in_investment_cost_table.gql | 7 - ...diesel_future_in_investment_cost_table.gql | 4 - ...iesel_present_in_investment_cost_table.gql | 4 - ...thermal_delta_in_investment_cost_table.gql | 7 - ...hermal_future_in_investment_cost_table.gql | 4 - ...ermal_present_in_investment_cost_table.gql | 4 - ...ountain_delta_in_investment_cost_table.gql | 7 - ...untain_future_in_investment_cost_table.gql | 4 - ...ntain_present_in_investment_cost_table.gql | 4 - ...o_river_delta_in_investment_cost_table.gql | 7 - ..._river_future_in_investment_cost_table.gql | 4 - ...river_present_in_investment_cost_table.gql | 4 - ...m_oxide_delta_in_investment_cost_table.gql | 7 - ..._oxide_future_in_investment_cost_table.gql | 4 - ...oxide_present_in_investment_cost_table.gql | 4 - ...m_oxide_delta_in_investment_cost_table.gql | 7 - ..._oxide_future_in_investment_cost_table.gql | 4 - ...oxide_present_in_investment_cost_table.gql | 4 - ...diation_delta_in_investment_cost_table.gql | 7 - ...iation_future_in_investment_cost_table.gql | 4 - ...ation_present_in_investment_cost_table.gql | 4 - ...diation_delta_in_investment_cost_table.gql | 7 - ...iation_future_in_investment_cost_table.gql | 4 - ...ation_present_in_investment_cost_table.gql | 4 - ...ste_mix_delta_in_investment_cost_table.gql | 7 - ...te_mix_future_in_investment_cost_table.gql | 4 - ...e_mix_present_in_investment_cost_table.gql | 4 - ...al_coal_delta_in_investment_cost_table.gql | 7 - ...l_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ste_mix_delta_in_investment_cost_table.gql | 7 - ...te_mix_future_in_investment_cost_table.gql | 4 - ...e_mix_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...tchable_delta_in_investment_cost_table.gql | 7 - ...chable_future_in_investment_cost_table.gql | 4 - ...hable_present_in_investment_cost_table.gql | 4 - ...ust_run_delta_in_investment_cost_table.gql | 7 - ...st_run_future_in_investment_cost_table.gql | 4 - ...t_run_present_in_investment_cost_table.gql | 4 - ...cs_coal_delta_in_investment_cost_table.gql | 7 - ...s_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...al_coal_delta_in_investment_cost_table.gql | 7 - ...l_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ng_coal_delta_in_investment_cost_table.gql | 7 - ...g_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...lignite_delta_in_investment_cost_table.gql | 7 - ...ignite_future_in_investment_cost_table.gql | 4 - ...gnite_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...lignite_delta_in_investment_cost_table.gql | 7 - ...ignite_future_in_investment_cost_table.gql | 4 - ...gnite_present_in_investment_cost_table.gql | 4 - ...coastal_delta_in_investment_cost_table.gql | 7 - ...oastal_future_in_investment_cost_table.gql | 4 - ...astal_present_in_investment_cost_table.gql | 4 - ..._inland_delta_in_investment_cost_table.gql | 7 - ...inland_future_in_investment_cost_table.gql | 4 - ...nland_present_in_investment_cost_table.gql | 4 - ...ffshore_delta_in_investment_cost_table.gql | 7 - ...fshore_future_in_investment_cost_table.gql | 4 - ...shore_present_in_investment_cost_table.gql | 4 - ...erosene_delta_in_investment_cost_table.gql | 7 - ...rosene_future_in_investment_cost_table.gql | 4 - ...osene_present_in_investment_cost_table.gql | 4 - ...ethanol_delta_in_investment_cost_table.gql | 7 - ...thanol_future_in_investment_cost_table.gql | 4 - ...hanol_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...diation_delta_in_investment_cost_table.gql | 7 - ...iation_future_in_investment_cost_table.gql | 4 - ...ation_present_in_investment_cost_table.gql | 4 - ...er_coal_delta_in_investment_cost_table.gql | 7 - ...r_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...thermal_delta_in_investment_cost_table.gql | 7 - ...hermal_future_in_investment_cost_table.gql | 4 - ...ermal_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...er_coal_delta_in_investment_cost_table.gql | 7 - ...r_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...ion_co2_delta_in_investment_cost_table.gql | 7 - ...on_co2_future_in_investment_cost_table.gql | 4 - ...n_co2_present_in_investment_cost_table.gql | 4 - ...ses_co2_delta_in_investment_cost_table.gql | 7 - ...es_co2_future_in_investment_cost_table.gql | 4 - ...s_co2_present_in_investment_cost_table.gql | 4 - ...er_coal_delta_in_investment_cost_table.gql | 7 - ...r_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...er_coal_delta_in_investment_cost_table.gql | 7 - ...r_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...fuelmix_delta_in_investment_cost_table.gql | 7 - ...uelmix_future_in_investment_cost_table.gql | 4 - ...elmix_present_in_investment_cost_table.gql | 4 - ...fuelmix_delta_in_investment_cost_table.gql | 7 - ...uelmix_future_in_investment_cost_table.gql | 4 - ...elmix_present_in_investment_cost_table.gql | 4 - ...fuelmix_delta_in_investment_cost_table.gql | 7 - ...uelmix_future_in_investment_cost_table.gql | 4 - ...elmix_present_in_investment_cost_table.gql | 4 - ...al_coal_delta_in_investment_cost_table.gql | 7 - ...l_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...er_coal_delta_in_investment_cost_table.gql | 7 - ...r_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...lignite_delta_in_investment_cost_table.gql | 7 - ...ignite_future_in_investment_cost_table.gql | 4 - ...gnite_present_in_investment_cost_table.gql | 4 - ...thermal_delta_in_investment_cost_table.gql | 7 - ...hermal_future_in_investment_cost_table.gql | 4 - ...ermal_present_in_investment_cost_table.gql | 4 - ...er_coal_delta_in_investment_cost_table.gql | 7 - ...r_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...red_co2_delta_in_investment_cost_table.gql | 7 - ...ed_co2_future_in_investment_cost_table.gql | 4 - ...d_co2_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...er_coal_delta_in_investment_cost_table.gql | 7 - ...r_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...ydrogen_delta_in_investment_cost_table.gql | 7 - ...drogen_future_in_investment_cost_table.gql | 4 - ...rogen_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - ...red_co2_delta_in_investment_cost_table.gql | 7 - ...ed_co2_future_in_investment_cost_table.gql | 4 - ...d_co2_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...tricity_delta_in_investment_cost_table.gql | 7 - ...ricity_future_in_investment_cost_table.gql | 4 - ...icity_present_in_investment_cost_table.gql | 4 - ...red_co2_delta_in_investment_cost_table.gql | 7 - ...ed_co2_future_in_investment_cost_table.gql | 4 - ...oal_gas_delta_in_investment_cost_table.gql | 7 - ...al_gas_future_in_investment_cost_table.gql | 4 - ...l_gas_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...red_co2_delta_in_investment_cost_table.gql | 7 - ...ed_co2_future_in_investment_cost_table.gql | 4 - ...d_co2_present_in_investment_cost_table.gql | 4 - ...ure_co2_delta_in_investment_cost_table.gql | 7 - ...re_co2_future_in_investment_cost_table.gql | 4 - ...e_co2_present_in_investment_cost_table.gql | 4 - ...ion_co2_delta_in_investment_cost_table.gql | 7 - ...on_co2_future_in_investment_cost_table.gql | 4 - ...n_co2_present_in_investment_cost_table.gql | 4 - ...er_coal_delta_in_investment_cost_table.gql | 7 - ...r_coal_future_in_investment_cost_table.gql | 4 - ..._coal_present_in_investment_cost_table.gql | 4 - ...ude_oil_delta_in_investment_cost_table.gql | 7 - ...de_oil_future_in_investment_cost_table.gql | 4 - ...e_oil_present_in_investment_cost_table.gql | 4 - ...ork_gas_delta_in_investment_cost_table.gql | 7 - ...rk_gas_future_in_investment_cost_table.gql | 4 - ...k_gas_present_in_investment_cost_table.gql | 4 - ...pellets_delta_in_investment_cost_table.gql | 7 - ...ellets_future_in_investment_cost_table.gql | 4 - ...llets_present_in_investment_cost_table.gql | 4 - .../total_delta_in_investment_cost_table.gql | 4 - .../total_future_in_investment_cost_table.gql | 167 ------------------ ...total_present_in_investment_cost_table.gql | 4 - 470 files changed, 2511 deletions(-) delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_geothermal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_geothermal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_geothermal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_geothermal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_geothermal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_geothermal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_bof_captured_co2_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_bof_captured_co2_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_coal_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_coal_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_coal_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_network_gas_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_network_gas_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_network_gas_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_present_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/total_delta_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/total_future_in_investment_cost_table.gql delete mode 100644 gqueries/output_elements/output_series/investment_table/total_present_in_investment_cost_table.gql diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 15e9afb8f4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of agriculture_burner_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(agriculture_burner_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index c5c02ad30b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_burner_crude_oil IF newly built (green field approach) - -- query = future:V(agriculture_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index 9a57fdfc74..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_burner_crude_oil IF newly built (green field approach) - -- query = present:V(agriculture_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index 846987efad..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of agriculture_burner_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(agriculture_burner_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index e63e2cd0e5..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_burner_hydrogen IF newly built (green field approach) - -- query = future:V(agriculture_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index 2f1f014cc0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_burner_hydrogen IF newly built (green field approach) - -- query = present:V(agriculture_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index cbb0f0b065..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of agriculture_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(agriculture_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 0f868ee534..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_burner_network_gas IF newly built (green field approach) - -- query = future:V(agriculture_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 55d6b57e42..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_burner_network_gas IF newly built (green field approach) - -- query = present:V(agriculture_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index 40e0e6bfbb..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of agriculture_burner_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(agriculture_burner_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index 32275fae12..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_burner_wood_pellets IF newly built (green field approach) - -- query = future:V(agriculture_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index c5e4d1f1fa..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_burner_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_burner_wood_pellets IF newly built (green field approach) - -- query = present:V(agriculture_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_geothermal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_geothermal_delta_in_investment_cost_table.gql deleted file mode 100644 index 8f8661f530..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_geothermal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of agriculture_geothermal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(agriculture_geothermal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_geothermal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_geothermal_future_in_investment_cost_table.gql deleted file mode 100644 index c59eb7b9ab..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_geothermal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_geothermal IF newly built (green field approach) - -- query = future:V(agriculture_geothermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_geothermal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_geothermal_present_in_investment_cost_table.gql deleted file mode 100644 index 2a94631621..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_geothermal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_geothermal IF newly built (green field approach) - -- query = present:V(agriculture_geothermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 5e7c9d2454..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of agriculture_heatpump_water_water_ts_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(agriculture_heatpump_water_water_ts_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index e2f488f522..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_heatpump_water_water_ts_electricity IF newly built (green field approach) - -- query = future:V(agriculture_heatpump_water_water_ts_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index f98fc53ff7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/agriculture_heatpump_water_water_ts_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of agriculture_heatpump_water_water_ts_electricity IF newly built (green field approach) - -- query = present:V(agriculture_heatpump_water_water_ts_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 223364c7f7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_cooling_airconditioning_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_cooling_airconditioning_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index c7a2aa7640..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_cooling_airconditioning_electricity IF newly built (green field approach) - -- query = future:V(buildings_cooling_airconditioning_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index f967d6c99c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_cooling_airconditioning_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_cooling_airconditioning_electricity IF newly built (green field approach) - -- query = present:V(buildings_cooling_airconditioning_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_delta_in_investment_cost_table.gql deleted file mode 100644 index c7ccdabcb8..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_solar_pv_solar_radiation IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_solar_pv_solar_radiation,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_future_in_investment_cost_table.gql deleted file mode 100644 index f7eab203b1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_solar_pv_solar_radiation IF newly built (green field approach) - -- query = future:V(buildings_solar_pv_solar_radiation, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_present_in_investment_cost_table.gql deleted file mode 100644 index 4e9d6a2843..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_solar_pv_solar_radiation_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_solar_pv_solar_radiation IF newly built (green field approach) - -- query = present:V(buildings_solar_pv_solar_radiation, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 4a938fdb5a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_space_heater_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_space_heater_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_future_in_investment_cost_table.gql deleted file mode 100644 index d6f51c27f8..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_coal IF newly built (green field approach) - -- query = future:V(buildings_space_heater_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 50272cca3b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_coal IF newly built (green field approach) - -- query = present:V(buildings_space_heater_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index bafc4db1be..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_space_heater_collective_heatpump_water_water_ts_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_space_heater_collective_heatpump_water_water_ts_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index ed0c528ddf..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_collective_heatpump_water_water_ts_electricity IF newly built (green field approach) - -- query = future:V(buildings_space_heater_collective_heatpump_water_water_ts_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 2446e2afac..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_collective_heatpump_water_water_ts_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_collective_heatpump_water_water_ts_electricity IF newly built (green field approach) - -- query = present:V(buildings_space_heater_collective_heatpump_water_water_ts_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index 2c05f0a6dc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_space_heater_combined_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_space_heater_combined_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index 461505e0c4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_combined_hydrogen IF newly built (green field approach) - -- query = future:V(buildings_space_heater_combined_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index bafd105d72..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_combined_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_combined_hydrogen IF newly built (green field approach) - -- query = present:V(buildings_space_heater_combined_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 3ba19f57e8..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_space_heater_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_space_heater_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index d29ee51530..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_crude_oil IF newly built (green field approach) - -- query = future:V(buildings_space_heater_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index b197a8cf2c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_crude_oil IF newly built (green field approach) - -- query = present:V(buildings_space_heater_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 298d2847d1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_space_heater_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_space_heater_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 2e4d9b1bc0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_electricity IF newly built (green field approach) - -- query = future:V(buildings_space_heater_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index d8ee0a8432..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_electricity IF newly built (green field approach) - -- query = present:V(buildings_space_heater_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index f7c09f4a57..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_space_heater_heatpump_air_water_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_space_heater_heatpump_air_water_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index a5bd2791e0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_heatpump_air_water_electricity IF newly built (green field approach) - -- query = future:V(buildings_space_heater_heatpump_air_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 9f940d6bca..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_heatpump_air_water_electricity IF newly built (green field approach) - -- query = present:V(buildings_space_heater_heatpump_air_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 37f4dc1ad6..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_space_heater_heatpump_air_water_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_space_heater_heatpump_air_water_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index eeda5ac842..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_heatpump_air_water_network_gas IF newly built (green field approach) - -- query = future:V(buildings_space_heater_heatpump_air_water_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 27999ec932..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_heatpump_air_water_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_heatpump_air_water_network_gas IF newly built (green field approach) - -- query = present:V(buildings_space_heater_heatpump_air_water_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index d09cdb5d22..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_space_heater_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_space_heater_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 56f120e8cc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_network_gas IF newly built (green field approach) - -- query = future:V(buildings_space_heater_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index adea700d99..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_network_gas IF newly built (green field approach) - -- query = present:V(buildings_space_heater_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_delta_in_investment_cost_table.gql deleted file mode 100644 index 2735576bb9..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_space_heater_solar_thermal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_space_heater_solar_thermal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_future_in_investment_cost_table.gql deleted file mode 100644 index a53589e77d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_solar_thermal IF newly built (green field approach) - -- query = future:V(buildings_space_heater_solar_thermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_present_in_investment_cost_table.gql deleted file mode 100644 index 869d4a3e75..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_solar_thermal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_solar_thermal IF newly built (green field approach) - -- query = present:V(buildings_space_heater_solar_thermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index 1d39018c38..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of buildings_space_heater_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(buildings_space_heater_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index f865b81939..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_wood_pellets IF newly built (green field approach) - -- query = future:V(buildings_space_heater_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index 8d15b20fe1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/buildings_space_heater_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of buildings_space_heater_wood_pellets IF newly built (green field approach) - -- query = present:V(buildings_space_heater_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_delta_in_investment_cost_table.gql deleted file mode 100644 index bf581a1dc7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_biogas_fermentation_wet_biomass IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_biogas_fermentation_wet_biomass,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_future_in_investment_cost_table.gql deleted file mode 100644 index e4011f98b1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_biogas_fermentation_wet_biomass IF newly built (green field approach) - -- query = future:V(energy_biogas_fermentation_wet_biomass, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_present_in_investment_cost_table.gql deleted file mode 100644 index 344257ad53..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_biogas_fermentation_wet_biomass_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_biogas_fermentation_wet_biomass IF newly built (green field approach) - -- query = present:V(energy_biogas_fermentation_wet_biomass, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index d174472d33..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_chp_combined_cycle_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_chp_combined_cycle_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 29525cbf4b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_combined_cycle_network_gas IF newly built (green field approach) - -- query = future:V(energy_chp_combined_cycle_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index d2c2eef5f9..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_combined_cycle_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_combined_cycle_network_gas IF newly built (green field approach) - -- query = present:V(energy_chp_combined_cycle_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_delta_in_investment_cost_table.gql deleted file mode 100644 index 215d79e052..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_chp_local_engine_biogas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_chp_local_engine_biogas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_future_in_investment_cost_table.gql deleted file mode 100644 index f45060cbd0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_local_engine_biogas IF newly built (green field approach) - -- query = future:V(energy_chp_local_engine_biogas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_present_in_investment_cost_table.gql deleted file mode 100644 index 65043b2af4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_biogas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_local_engine_biogas IF newly built (green field approach) - -- query = present:V(energy_chp_local_engine_biogas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 25413e0f95..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_chp_local_engine_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_chp_local_engine_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index a849217593..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_local_engine_network_gas IF newly built (green field approach) - -- query = future:V(energy_chp_local_engine_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 4f5f58d6fb..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_local_engine_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_local_engine_network_gas IF newly built (green field approach) - -- query = present:V(energy_chp_local_engine_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index 48c3e20be9..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_chp_local_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_chp_local_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index a3f274eea7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_local_wood_pellets IF newly built (green field approach) - -- query = future:V(energy_chp_local_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index 33613e58e2..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_local_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_local_wood_pellets IF newly built (green field approach) - -- query = present:V(energy_chp_local_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_delta_in_investment_cost_table.gql deleted file mode 100644 index 175f0f20ae..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_chp_supercritical_ccs_waste_mix IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_chp_supercritical_ccs_waste_mix,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_future_in_investment_cost_table.gql deleted file mode 100644 index a89f687874..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_supercritical_ccs_waste_mix IF newly built (green field approach) - -- query = future:V(energy_chp_supercritical_ccs_waste_mix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_present_in_investment_cost_table.gql deleted file mode 100644 index f97f204dc2..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_ccs_waste_mix_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_supercritical_ccs_waste_mix IF newly built (green field approach) - -- query = present:V(energy_chp_supercritical_ccs_waste_mix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_delta_in_investment_cost_table.gql deleted file mode 100644 index a5a507944b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_chp_supercritical_waste_mix IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_chp_supercritical_waste_mix,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_future_in_investment_cost_table.gql deleted file mode 100644 index f133ea11d5..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_supercritical_waste_mix IF newly built (green field approach) - -- query = future:V(energy_chp_supercritical_waste_mix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_present_in_investment_cost_table.gql deleted file mode 100644 index 0d1c93645a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_supercritical_waste_mix_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_supercritical_waste_mix IF newly built (green field approach) - -- query = present:V(energy_chp_supercritical_waste_mix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 9e13e2aa87..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_chp_ultra_supercritical_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_chp_ultra_supercritical_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_future_in_investment_cost_table.gql deleted file mode 100644 index a0274805a1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_ultra_supercritical_coal IF newly built (green field approach) - -- query = future:V(energy_chp_ultra_supercritical_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 89f7ff45a3..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_ultra_supercritical_coal IF newly built (green field approach) - -- query = present:V(energy_chp_ultra_supercritical_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index f621923774..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_chp_ultra_supercritical_cofiring_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_chp_ultra_supercritical_cofiring_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 07445c21ae..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_ultra_supercritical_cofiring_coal IF newly built (green field approach) - -- query = future:V(energy_chp_ultra_supercritical_cofiring_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 58fab082dc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_cofiring_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_ultra_supercritical_cofiring_coal IF newly built (green field approach) - -- query = present:V(energy_chp_ultra_supercritical_cofiring_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_delta_in_investment_cost_table.gql deleted file mode 100644 index f9c1e272b0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_chp_ultra_supercritical_lignite IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_chp_ultra_supercritical_lignite,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_future_in_investment_cost_table.gql deleted file mode 100644 index f407ee3aae..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_ultra_supercritical_lignite IF newly built (green field approach) - -- query = future:V(energy_chp_ultra_supercritical_lignite, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_present_in_investment_cost_table.gql deleted file mode 100644 index 8039ac0800..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_chp_ultra_supercritical_lignite_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_chp_ultra_supercritical_lignite IF newly built (green field approach) - -- query = present:V(energy_chp_ultra_supercritical_lignite, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index b811e76a33..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_flexibility_hv_opac_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_flexibility_hv_opac_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 1981089c13..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_flexibility_hv_opac_electricity IF newly built (green field approach) - -- query = future:V(energy_flexibility_hv_opac_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index c0f8d1f108..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_flexibility_hv_opac_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_flexibility_hv_opac_electricity IF newly built (green field approach) - -- query = present:V(energy_flexibility_hv_opac_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 5728088205..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_flexibility_mv_batteries_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_flexibility_mv_batteries_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index f5729df9ee..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_flexibility_mv_batteries_electricity IF newly built (green field approach) - -- query = future:V(energy_flexibility_mv_batteries_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index abeb978019..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_flexibility_mv_batteries_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_flexibility_mv_batteries_electricity IF newly built (green field approach) - -- query = present:V(energy_flexibility_mv_batteries_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_delta_in_investment_cost_table.gql deleted file mode 100644 index 40423764d3..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_greengas_gasification_dry_biomass IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_greengas_gasification_dry_biomass,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_future_in_investment_cost_table.gql deleted file mode 100644 index ed9a1f86a1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_greengas_gasification_dry_biomass IF newly built (green field approach) - -- query = future:V(energy_greengas_gasification_dry_biomass, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_present_in_investment_cost_table.gql deleted file mode 100644 index 8a7efa2e01..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_dry_biomass_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_greengas_gasification_dry_biomass IF newly built (green field approach) - -- query = present:V(energy_greengas_gasification_dry_biomass, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_delta_in_investment_cost_table.gql deleted file mode 100644 index 8c22a9619b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_greengas_gasification_wet_biomass IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_greengas_gasification_wet_biomass,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_future_in_investment_cost_table.gql deleted file mode 100644 index 61dc797b4b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_greengas_gasification_wet_biomass IF newly built (green field approach) - -- query = future:V(energy_greengas_gasification_wet_biomass, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_present_in_investment_cost_table.gql deleted file mode 100644 index 8d4157d17b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_greengas_gasification_wet_biomass_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_greengas_gasification_wet_biomass IF newly built (green field approach) - -- query = present:V(energy_greengas_gasification_wet_biomass, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 8e1e8baf02..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_backup_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_backup_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 7adf9b46c1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_backup_burner_network_gas IF newly built (green field approach) - -- query = future:V(energy_heat_backup_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 0c60d79174..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_backup_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_backup_burner_network_gas IF newly built (green field approach) - -- query = present:V(energy_heat_backup_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index d302072218..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_boiler_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_boiler_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 06fa9c5586..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_boiler_electricity IF newly built (green field approach) - -- query = future:V(energy_heat_boiler_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index e6b0aa5200..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_boiler_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_boiler_electricity IF newly built (green field approach) - -- query = present:V(energy_heat_boiler_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index fba5f5761f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_burner_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_burner_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 0a415fcbb7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_coal IF newly built (green field approach) - -- query = future:V(energy_heat_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 7a714fcae0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_coal IF newly built (green field approach) - -- query = present:V(energy_heat_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 4af7dc2993..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_burner_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_burner_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index dd70eb5e2f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_crude_oil IF newly built (green field approach) - -- query = future:V(energy_heat_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index 54978d5b22..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_crude_oil IF newly built (green field approach) - -- query = present:V(energy_heat_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index e158cbcf7e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_burner_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_burner_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index eaee23fe99..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_hydrogen IF newly built (green field approach) - -- query = future:V(energy_heat_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index 3ba7de84f7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_hydrogen IF newly built (green field approach) - -- query = present:V(energy_heat_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 38bfb8dd6a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 840e7ddace..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_network_gas IF newly built (green field approach) - -- query = future:V(energy_heat_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 34437cba0f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_network_gas IF newly built (green field approach) - -- query = present:V(energy_heat_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_delta_in_investment_cost_table.gql deleted file mode 100644 index 9c32c0469f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_burner_waste_mix IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_burner_waste_mix,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_future_in_investment_cost_table.gql deleted file mode 100644 index 79f297c512..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_waste_mix IF newly built (green field approach) - -- query = future:V(energy_heat_burner_waste_mix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_present_in_investment_cost_table.gql deleted file mode 100644 index c40636ff59..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_waste_mix_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_waste_mix IF newly built (green field approach) - -- query = present:V(energy_heat_burner_waste_mix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index c2773d2dc4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_burner_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_burner_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index a770ed0ade..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_wood_pellets IF newly built (green field approach) - -- query = future:V(energy_heat_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index 6229fdb03a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_burner_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_burner_wood_pellets IF newly built (green field approach) - -- query = present:V(energy_heat_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 7b9afc835d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_heatpump_water_water_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_heatpump_water_water_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index a3a713b61f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_heatpump_water_water_electricity IF newly built (green field approach) - -- query = future:V(energy_heat_heatpump_water_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index b57b7d6cc1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_heatpump_water_water_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_heatpump_water_water_electricity IF newly built (green field approach) - -- query = present:V(energy_heat_heatpump_water_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_delta_in_investment_cost_table.gql deleted file mode 100644 index 05b0aa8c1b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_solar_thermal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_solar_thermal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_future_in_investment_cost_table.gql deleted file mode 100644 index 22722ad75d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_solar_thermal IF newly built (green field approach) - -- query = future:V(energy_heat_solar_thermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_present_in_investment_cost_table.gql deleted file mode 100644 index 9268d85d4b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_solar_thermal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_solar_thermal IF newly built (green field approach) - -- query = present:V(energy_heat_solar_thermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_delta_in_investment_cost_table.gql deleted file mode 100644 index 9196459e0d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_heat_well_geothermal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_heat_well_geothermal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_future_in_investment_cost_table.gql deleted file mode 100644 index c49709cc13..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_well_geothermal IF newly built (green field approach) - -- query = future:V(energy_heat_well_geothermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_present_in_investment_cost_table.gql deleted file mode 100644 index 3097c3a4b5..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_heat_well_geothermal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_heat_well_geothermal IF newly built (green field approach) - -- query = present:V(energy_heat_well_geothermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 42a401ba77..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_hydrogen_flexibility_p2g_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_hydrogen_flexibility_p2g_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index f04131b925..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_hydrogen_flexibility_p2g_electricity IF newly built (green field approach) - -- query = future:V(energy_hydrogen_flexibility_p2g_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 2827770b4a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_hydrogen_flexibility_p2g_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_hydrogen_flexibility_p2g_electricity IF newly built (green field approach) - -- query = present:V(energy_hydrogen_flexibility_p2g_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 832ced96c1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_combined_cycle_ccs_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_combined_cycle_ccs_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_future_in_investment_cost_table.gql deleted file mode 100644 index c5171a13e9..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_ccs_coal IF newly built (green field approach) - -- query = future:V(energy_power_combined_cycle_ccs_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_present_in_investment_cost_table.gql deleted file mode 100644 index cf4ae3b24e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_ccs_coal IF newly built (green field approach) - -- query = present:V(energy_power_combined_cycle_ccs_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_delta_in_investment_cost_table.gql deleted file mode 100644 index 7dc6155098..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_combined_cycle_ccs_network_gas_dispatchable IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_combined_cycle_ccs_network_gas_dispatchable,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_future_in_investment_cost_table.gql deleted file mode 100644 index 178074f88b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_ccs_network_gas_dispatchable IF newly built (green field approach) - -- query = future:V(energy_power_combined_cycle_ccs_network_gas_dispatchable, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_present_in_investment_cost_table.gql deleted file mode 100644 index de57849b3e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_ccs_network_gas_dispatchable_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_ccs_network_gas_dispatchable IF newly built (green field approach) - -- query = present:V(energy_power_combined_cycle_ccs_network_gas_dispatchable, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 54b272388e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_combined_cycle_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_combined_cycle_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_future_in_investment_cost_table.gql deleted file mode 100644 index f81f8ce752..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_coal IF newly built (green field approach) - -- query = future:V(energy_power_combined_cycle_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_present_in_investment_cost_table.gql deleted file mode 100644 index bbca1fd215..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_coal IF newly built (green field approach) - -- query = present:V(energy_power_combined_cycle_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index f3b3c39501..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_combined_cycle_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_combined_cycle_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index 96bbadb8a8..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_hydrogen IF newly built (green field approach) - -- query = future:V(energy_power_combined_cycle_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index 1bf85c0a69..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_hydrogen IF newly built (green field approach) - -- query = present:V(energy_power_combined_cycle_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_delta_in_investment_cost_table.gql deleted file mode 100644 index 6f843d5aaa..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_combined_cycle_network_gas_dispatchable IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_combined_cycle_network_gas_dispatchable,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_future_in_investment_cost_table.gql deleted file mode 100644 index a512f558c7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_network_gas_dispatchable IF newly built (green field approach) - -- query = future:V(energy_power_combined_cycle_network_gas_dispatchable, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_present_in_investment_cost_table.gql deleted file mode 100644 index 3a7a2796dc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_dispatchable_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_network_gas_dispatchable IF newly built (green field approach) - -- query = present:V(energy_power_combined_cycle_network_gas_dispatchable, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_delta_in_investment_cost_table.gql deleted file mode 100644 index 552b5c876d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_combined_cycle_network_gas_must_run IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_combined_cycle_network_gas_must_run,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_future_in_investment_cost_table.gql deleted file mode 100644 index 1fc2d79776..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_network_gas_must_run IF newly built (green field approach) - -- query = future:V(energy_power_combined_cycle_network_gas_must_run, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_present_in_investment_cost_table.gql deleted file mode 100644 index d790f4db48..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_combined_cycle_network_gas_must_run_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_combined_cycle_network_gas_must_run IF newly built (green field approach) - -- query = present:V(energy_power_combined_cycle_network_gas_must_run, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_delta_in_investment_cost_table.gql deleted file mode 100644 index ed96c8f528..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_engine_diesel IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_engine_diesel,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_future_in_investment_cost_table.gql deleted file mode 100644 index 383febc72b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_engine_diesel IF newly built (green field approach) - -- query = future:V(energy_power_engine_diesel, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_present_in_investment_cost_table.gql deleted file mode 100644 index 6c63000386..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_engine_diesel_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_engine_diesel IF newly built (green field approach) - -- query = present:V(energy_power_engine_diesel, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_geothermal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_geothermal_delta_in_investment_cost_table.gql deleted file mode 100644 index 2f2189b65d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_geothermal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_geothermal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_geothermal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_geothermal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_geothermal_future_in_investment_cost_table.gql deleted file mode 100644 index d8b5550bc4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_geothermal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_geothermal IF newly built (green field approach) - -- query = future:V(energy_power_geothermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_geothermal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_geothermal_present_in_investment_cost_table.gql deleted file mode 100644 index 6966a432e4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_geothermal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_geothermal IF newly built (green field approach) - -- query = present:V(energy_power_geothermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_delta_in_investment_cost_table.gql deleted file mode 100644 index 3d19af2357..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_hydro_mountain IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_hydro_mountain,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_future_in_investment_cost_table.gql deleted file mode 100644 index cfd7012480..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_hydro_mountain IF newly built (green field approach) - -- query = future:V(energy_power_hydro_mountain, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_present_in_investment_cost_table.gql deleted file mode 100644 index 98053af3f7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_mountain_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_hydro_mountain IF newly built (green field approach) - -- query = present:V(energy_power_hydro_mountain, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_delta_in_investment_cost_table.gql deleted file mode 100644 index 38f9d51908..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_hydro_river IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_hydro_river,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_future_in_investment_cost_table.gql deleted file mode 100644 index 2fd45c0e1a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_hydro_river IF newly built (green field approach) - -- query = future:V(energy_power_hydro_river, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_present_in_investment_cost_table.gql deleted file mode 100644 index 9f30bd9a45..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_hydro_river_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_hydro_river IF newly built (green field approach) - -- query = present:V(energy_power_hydro_river, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_delta_in_investment_cost_table.gql deleted file mode 100644 index 446f074147..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_nuclear_gen2_uranium_oxide IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_nuclear_gen2_uranium_oxide,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_future_in_investment_cost_table.gql deleted file mode 100644 index eaf853298d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_nuclear_gen2_uranium_oxide IF newly built (green field approach) - -- query = future:V(energy_power_nuclear_gen2_uranium_oxide, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_present_in_investment_cost_table.gql deleted file mode 100644 index fc26f10521..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen2_uranium_oxide_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_nuclear_gen2_uranium_oxide IF newly built (green field approach) - -- query = present:V(energy_power_nuclear_gen2_uranium_oxide, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_delta_in_investment_cost_table.gql deleted file mode 100644 index 0341c1e34b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_nuclear_gen3_uranium_oxide IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_nuclear_gen3_uranium_oxide,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_future_in_investment_cost_table.gql deleted file mode 100644 index 15b83f26b0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_nuclear_gen3_uranium_oxide IF newly built (green field approach) - -- query = future:V(energy_power_nuclear_gen3_uranium_oxide, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_present_in_investment_cost_table.gql deleted file mode 100644 index ad65845908..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_nuclear_gen3_uranium_oxide_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_nuclear_gen3_uranium_oxide IF newly built (green field approach) - -- query = present:V(energy_power_nuclear_gen3_uranium_oxide, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_delta_in_investment_cost_table.gql deleted file mode 100644 index ef20fea77f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_solar_csp_solar_radiation IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_solar_csp_solar_radiation,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_future_in_investment_cost_table.gql deleted file mode 100644 index 34cb36ce5b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_solar_csp_solar_radiation IF newly built (green field approach) - -- query = future:V(energy_power_solar_csp_solar_radiation, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_present_in_investment_cost_table.gql deleted file mode 100644 index 9fcd837384..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_solar_csp_solar_radiation_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_solar_csp_solar_radiation IF newly built (green field approach) - -- query = present:V(energy_power_solar_csp_solar_radiation, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_delta_in_investment_cost_table.gql deleted file mode 100644 index 7269bd8148..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_solar_pv_solar_radiation IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_solar_pv_solar_radiation,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_future_in_investment_cost_table.gql deleted file mode 100644 index fce07b12e7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_solar_pv_solar_radiation IF newly built (green field approach) - -- query = future:V(energy_power_solar_pv_solar_radiation, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_present_in_investment_cost_table.gql deleted file mode 100644 index 49e0f10693..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_solar_pv_solar_radiation_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_solar_pv_solar_radiation IF newly built (green field approach) - -- query = present:V(energy_power_solar_pv_solar_radiation, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_delta_in_investment_cost_table.gql deleted file mode 100644 index f6428379be..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_supercritical_ccs_waste_mix IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_supercritical_ccs_waste_mix,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_future_in_investment_cost_table.gql deleted file mode 100644 index faa169a6e9..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_supercritical_ccs_waste_mix IF newly built (green field approach) - -- query = future:V(energy_power_supercritical_ccs_waste_mix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_present_in_investment_cost_table.gql deleted file mode 100644 index 20cf4c8e21..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_ccs_waste_mix_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_supercritical_ccs_waste_mix IF newly built (green field approach) - -- query = present:V(energy_power_supercritical_ccs_waste_mix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 11e01ab7dc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_supercritical_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_supercritical_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 93e872149b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_supercritical_coal IF newly built (green field approach) - -- query = future:V(energy_power_supercritical_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_present_in_investment_cost_table.gql deleted file mode 100644 index e3b0a71c0e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_supercritical_coal IF newly built (green field approach) - -- query = present:V(energy_power_supercritical_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_delta_in_investment_cost_table.gql deleted file mode 100644 index 062766ddf7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_supercritical_waste_mix IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_supercritical_waste_mix,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_future_in_investment_cost_table.gql deleted file mode 100644 index be41724b0a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_supercritical_waste_mix IF newly built (green field approach) - -- query = future:V(energy_power_supercritical_waste_mix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_present_in_investment_cost_table.gql deleted file mode 100644 index 78b5b89d61..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_supercritical_waste_mix_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_supercritical_waste_mix IF newly built (green field approach) - -- query = present:V(energy_power_supercritical_waste_mix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index f61ea1f032..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_turbine_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_turbine_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index 63deb4d611..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_turbine_hydrogen IF newly built (green field approach) - -- query = future:V(energy_power_turbine_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index e57fefacec..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_turbine_hydrogen IF newly built (green field approach) - -- query = present:V(energy_power_turbine_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_delta_in_investment_cost_table.gql deleted file mode 100644 index f318151887..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_turbine_network_gas_dispatchable IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_turbine_network_gas_dispatchable,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_future_in_investment_cost_table.gql deleted file mode 100644 index 9d5425acd1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_turbine_network_gas_dispatchable IF newly built (green field approach) - -- query = future:V(energy_power_turbine_network_gas_dispatchable, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_present_in_investment_cost_table.gql deleted file mode 100644 index 47cab8b4e6..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_dispatchable_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_turbine_network_gas_dispatchable IF newly built (green field approach) - -- query = present:V(energy_power_turbine_network_gas_dispatchable, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_delta_in_investment_cost_table.gql deleted file mode 100644 index 83feb8768d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_turbine_network_gas_must_run IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_turbine_network_gas_must_run,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_future_in_investment_cost_table.gql deleted file mode 100644 index e30d0724c6..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_turbine_network_gas_must_run IF newly built (green field approach) - -- query = future:V(energy_power_turbine_network_gas_must_run, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_present_in_investment_cost_table.gql deleted file mode 100644 index f48db254f4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_turbine_network_gas_must_run_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_turbine_network_gas_must_run IF newly built (green field approach) - -- query = present:V(energy_power_turbine_network_gas_must_run, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index ff5ef6660c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_ccs_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_ultra_supercritical_ccs_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 2f232125d2..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_ccs_coal IF newly built (green field approach) - -- query = future:V(energy_power_ultra_supercritical_ccs_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 6cd062ea11..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_ccs_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_ccs_coal IF newly built (green field approach) - -- query = present:V(energy_power_ultra_supercritical_ccs_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 22852cd1bf..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_ultra_supercritical_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 8d921b5907..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_coal IF newly built (green field approach) - -- query = future:V(energy_power_ultra_supercritical_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 7b97548282..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_coal IF newly built (green field approach) - -- query = present:V(energy_power_ultra_supercritical_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 6f7671be5d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_cofiring_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_ultra_supercritical_cofiring_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 38f53e46fd..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_cofiring_coal IF newly built (green field approach) - -- query = future:V(energy_power_ultra_supercritical_cofiring_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_present_in_investment_cost_table.gql deleted file mode 100644 index e4cebc3e5b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_cofiring_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_cofiring_coal IF newly built (green field approach) - -- query = present:V(energy_power_ultra_supercritical_cofiring_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 5a1dc67bd8..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_ultra_supercritical_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index eef51639aa..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_crude_oil IF newly built (green field approach) - -- query = future:V(energy_power_ultra_supercritical_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index 59765cc1f0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_crude_oil IF newly built (green field approach) - -- query = present:V(energy_power_ultra_supercritical_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_delta_in_investment_cost_table.gql deleted file mode 100644 index ab1adcde70..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_lignite IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_ultra_supercritical_lignite,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_future_in_investment_cost_table.gql deleted file mode 100644 index e6b7a2be22..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_lignite IF newly built (green field approach) - -- query = future:V(energy_power_ultra_supercritical_lignite, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_present_in_investment_cost_table.gql deleted file mode 100644 index 43b461ae73..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_lignite_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_lignite IF newly built (green field approach) - -- query = present:V(energy_power_ultra_supercritical_lignite, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index c9cc57e2fd..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_ultra_supercritical_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 60c50a6ead..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_network_gas IF newly built (green field approach) - -- query = future:V(energy_power_ultra_supercritical_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index e6acf311a2..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_network_gas IF newly built (green field approach) - -- query = present:V(energy_power_ultra_supercritical_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_delta_in_investment_cost_table.gql deleted file mode 100644 index 17951402b3..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_oxyfuel_ccs_lignite IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_ultra_supercritical_oxyfuel_ccs_lignite,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_future_in_investment_cost_table.gql deleted file mode 100644 index 442d023cb8..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_oxyfuel_ccs_lignite IF newly built (green field approach) - -- query = future:V(energy_power_ultra_supercritical_oxyfuel_ccs_lignite, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_present_in_investment_cost_table.gql deleted file mode 100644 index 96ac1515ed..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_ultra_supercritical_oxyfuel_ccs_lignite_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_ultra_supercritical_oxyfuel_ccs_lignite IF newly built (green field approach) - -- query = present:V(energy_power_ultra_supercritical_oxyfuel_ccs_lignite, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_delta_in_investment_cost_table.gql deleted file mode 100644 index 6bfc00e349..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_wind_turbine_coastal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_wind_turbine_coastal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_future_in_investment_cost_table.gql deleted file mode 100644 index 2a6a4b6db7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_wind_turbine_coastal IF newly built (green field approach) - -- query = future:V(energy_power_wind_turbine_coastal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_present_in_investment_cost_table.gql deleted file mode 100644 index 9e65d10f7b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_coastal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_wind_turbine_coastal IF newly built (green field approach) - -- query = present:V(energy_power_wind_turbine_coastal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_delta_in_investment_cost_table.gql deleted file mode 100644 index 23881b6619..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_wind_turbine_inland IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_wind_turbine_inland,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_future_in_investment_cost_table.gql deleted file mode 100644 index 2e7c77784d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_wind_turbine_inland IF newly built (green field approach) - -- query = future:V(energy_power_wind_turbine_inland, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_present_in_investment_cost_table.gql deleted file mode 100644 index f75b226ac6..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_inland_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_wind_turbine_inland IF newly built (green field approach) - -- query = present:V(energy_power_wind_turbine_inland, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_delta_in_investment_cost_table.gql deleted file mode 100644 index 7bc2f9514f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_power_wind_turbine_offshore IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_power_wind_turbine_offshore,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_future_in_investment_cost_table.gql deleted file mode 100644 index dd547bbe5e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_wind_turbine_offshore IF newly built (green field approach) - -- query = future:V(energy_power_wind_turbine_offshore, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_present_in_investment_cost_table.gql deleted file mode 100644 index 24812b0b41..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_power_wind_turbine_offshore_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_power_wind_turbine_offshore IF newly built (green field approach) - -- query = present:V(energy_power_wind_turbine_offshore, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_delta_in_investment_cost_table.gql deleted file mode 100644 index c35a16588b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_production_fischer_tropsch_synthetic_must_run IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_production_fischer_tropsch_synthetic_must_run,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_future_in_investment_cost_table.gql deleted file mode 100644 index 492e3839b1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_production_fischer_tropsch_synthetic_must_run IF newly built (green field approach) - -- query = future:V(energy_production_fischer_tropsch_synthetic_must_run, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_present_in_investment_cost_table.gql deleted file mode 100644 index eefcbb9412..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_kerosene_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_production_fischer_tropsch_synthetic_must_run IF newly built (green field approach) - -- query = present:V(energy_production_fischer_tropsch_synthetic_must_run, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_delta_in_investment_cost_table.gql deleted file mode 100644 index c7c30c0b0a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of energy_production_methanol_synthesis_synthetic IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(energy_production_methanol_synthesis_synthetic,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_future_in_investment_cost_table.gql deleted file mode 100644 index 027093d264..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_production_methanol_synthesis_synthetic IF newly built (green field approach) - -- query = future:V(energy_production_methanol_synthesis_synthetic, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_present_in_investment_cost_table.gql deleted file mode 100644 index d9b845233e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/energy_production_synthetic_methanol_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of energy_production_methanol_synthesis_synthetic IF newly built (green field approach) - -- query = present:V(energy_production_methanol_synthesis_synthetic, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 001ae90be1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_cooling_airconditioning_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_cooling_airconditioning_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 647ec380e9..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_cooling_airconditioning_electricity IF newly built (green field approach) - -- query = future:V(households_cooling_airconditioning_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index bb3ef1c614..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_cooling_airconditioning_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_cooling_airconditioning_electricity IF newly built (green field approach) - -- query = present:V(households_cooling_airconditioning_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 79be607823..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_flexibility_p2p_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_flexibility_p2p_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 09ebb13e58..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_flexibility_p2p_electricity IF newly built (green field approach) - -- query = future:V(households_flexibility_p2p_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 4eb5607707..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_flexibility_p2p_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_flexibility_p2p_electricity IF newly built (green field approach) - -- query = present:V(households_flexibility_p2p_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_delta_in_investment_cost_table.gql deleted file mode 100644 index 17ce0a7683..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_solar_pv_solar_radiation IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_solar_pv_solar_radiation,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_future_in_investment_cost_table.gql deleted file mode 100644 index 9de07342ff..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_solar_pv_solar_radiation IF newly built (green field approach) - -- query = future:V(households_solar_pv_solar_radiation, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_present_in_investment_cost_table.gql deleted file mode 100644 index 1ee112826d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_solar_pv_solar_radiation_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_solar_pv_solar_radiation IF newly built (green field approach) - -- query = present:V(households_solar_pv_solar_radiation, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 191eb9b61f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_coal_future_in_investment_cost_table.gql deleted file mode 100644 index d117663a72..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_coal IF newly built (green field approach) - -- query = future:V(households_space_heater_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 097dd64631..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_coal IF newly built (green field approach) - -- query = present:V(households_space_heater_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index c30cf7f36e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_combined_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_combined_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index 18a33d01bb..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_combined_hydrogen IF newly built (green field approach) - -- query = future:V(households_space_heater_combined_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index 6ec7d10746..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_combined_hydrogen IF newly built (green field approach) - -- query = present:V(households_space_heater_combined_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index ee1f3299c5..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_combined_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_combined_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 9c4ad9c38c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_combined_network_gas IF newly built (green field approach) - -- query = future:V(households_space_heater_combined_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 5c41216ee7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_combined_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_combined_network_gas IF newly built (green field approach) - -- query = present:V(households_space_heater_combined_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 8c4f8a7e75..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index 2638facae6..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_crude_oil IF newly built (green field approach) - -- query = future:V(households_space_heater_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index 254dda24e4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_crude_oil IF newly built (green field approach) - -- query = present:V(households_space_heater_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 2454ee7b97..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 7205b32add..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_electricity IF newly built (green field approach) - -- query = future:V(households_space_heater_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 8db78d59d7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_electricity IF newly built (green field approach) - -- query = present:V(households_space_heater_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index f52f350b52..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_heatpump_air_water_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_heatpump_air_water_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 56c0af55fc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_heatpump_air_water_electricity IF newly built (green field approach) - -- query = future:V(households_space_heater_heatpump_air_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index e4f74515fc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_air_water_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_heatpump_air_water_electricity IF newly built (green field approach) - -- query = present:V(households_space_heater_heatpump_air_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 156d5ef726..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_heatpump_ground_water_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_heatpump_ground_water_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index e683de018b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_heatpump_ground_water_electricity IF newly built (green field approach) - -- query = future:V(households_space_heater_heatpump_ground_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 513dbefa1d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_heatpump_ground_water_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_heatpump_ground_water_electricity IF newly built (green field approach) - -- query = present:V(households_space_heater_heatpump_ground_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 10c465f47c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_hybrid_heatpump_air_water_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_hybrid_heatpump_air_water_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 609799ab76..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_hybrid_heatpump_air_water_electricity IF newly built (green field approach) - -- query = future:V(households_space_heater_hybrid_heatpump_air_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 4c52eb6ceb..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_heatpump_air_water_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_hybrid_heatpump_air_water_electricity IF newly built (green field approach) - -- query = present:V(households_space_heater_hybrid_heatpump_air_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 0ee2142f4e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index c9eb4bfbe1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity IF newly built (green field approach) - -- query = future:V(households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 5b5c27dd02..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity IF newly built (green field approach) - -- query = present:V(households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 4ddecfa284..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index ecd4dcf688..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_network_gas IF newly built (green field approach) - -- query = future:V(households_space_heater_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 4a3fce0553..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_network_gas IF newly built (green field approach) - -- query = present:V(households_space_heater_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index 985495c561..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_space_heater_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_space_heater_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index 3fbf8a7d3d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_wood_pellets IF newly built (green field approach) - -- query = future:V(households_space_heater_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index 05dc9dbacc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_space_heater_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_space_heater_wood_pellets IF newly built (green field approach) - -- query = present:V(households_space_heater_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 28e6d20c27..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_water_heater_resistive_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_water_heater_resistive_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 6fe57055a3..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_water_heater_resistive_electricity IF newly built (green field approach) - -- query = future:V(households_water_heater_resistive_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index fb5a9f01ec..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_water_heater_resistive_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_water_heater_resistive_electricity IF newly built (green field approach) - -- query = present:V(households_water_heater_resistive_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_delta_in_investment_cost_table.gql deleted file mode 100644 index 9bcdea386e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of households_water_heater_solar_thermal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(households_water_heater_solar_thermal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_future_in_investment_cost_table.gql deleted file mode 100644 index 8edaeaff32..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_water_heater_solar_thermal IF newly built (green field approach) - -- query = future:V(households_water_heater_solar_thermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_present_in_investment_cost_table.gql deleted file mode 100644 index e11352568c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/households_water_heater_solar_thermal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of households_water_heater_solar_thermal IF newly built (green field approach) - -- query = present:V(households_water_heater_solar_thermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index a7c2a4f14f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_aluminium_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_aluminium_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 72a2a268f6..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_aluminium_burner_network_gas IF newly built (green field approach) - -- query = future:V(industry_aluminium_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 9145117a52..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_aluminium_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_aluminium_burner_network_gas IF newly built (green field approach) - -- query = present:V(industry_aluminium_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 940c0ccbc1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_fertilizers_burner_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 5c9891813b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_coal IF newly built (green field approach) - -- query = future:V(industry_chemicals_fertilizers_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 70ea559336..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_coal IF newly built (green field approach) - -- query = present:V(industry_chemicals_fertilizers_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index d705e31920..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_fertilizers_burner_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index 44a982621f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_crude_oil IF newly built (green field approach) - -- query = future:V(industry_chemicals_fertilizers_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index 34ee677e96..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_crude_oil IF newly built (green field approach) - -- query = present:V(industry_chemicals_fertilizers_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index 6b2b5d4e86..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_fertilizers_burner_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index 36a65d78f1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_hydrogen IF newly built (green field approach) - -- query = future:V(industry_chemicals_fertilizers_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index 1d1232ef91..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_hydrogen IF newly built (green field approach) - -- query = present:V(industry_chemicals_fertilizers_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 1f1b39dbea..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_fertilizers_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index cc96d04ce6..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_network_gas IF newly built (green field approach) - -- query = future:V(industry_chemicals_fertilizers_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index c498625787..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_network_gas IF newly built (green field approach) - -- query = present:V(industry_chemicals_fertilizers_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index 6debf4f491..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_fertilizers_burner_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index c990ca4402..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_wood_pellets IF newly built (green field approach) - -- query = future:V(industry_chemicals_fertilizers_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index db2a6e61ec..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_burner_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_burner_wood_pellets IF newly built (green field approach) - -- query = present:V(industry_chemicals_fertilizers_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_delta_in_investment_cost_table.gql deleted file mode 100644 index 6f783818c9..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_captured_combustion_co2 IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - MV(industry_chemicals_fertilizers_captured_combustion_co2,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_future_in_investment_cost_table.gql deleted file mode 100644 index 8355eaee71..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_captured_combustion_co2 IF newly built (green field approach) - -- query = future:MV(industry_chemicals_fertilizers_captured_combustion_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_present_in_investment_cost_table.gql deleted file mode 100644 index 638d19d8da..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_combustion_co2_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_captured_combustion_co2 IF newly built (green field approach) - -- query = present:MV(industry_chemicals_fertilizers_captured_combustion_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_delta_in_investment_cost_table.gql deleted file mode 100644 index 9839d9e845..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_captured_processes_co2 IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - MV(industry_chemicals_fertilizers_captured_processes_co2,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_future_in_investment_cost_table.gql deleted file mode 100644 index ed5cced6cb..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_captured_processes_co2 IF newly built (green field approach) - -- query = future:MV(industry_chemicals_fertilizers_captured_processes_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_present_in_investment_cost_table.gql deleted file mode 100644 index 0e4363e761..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_fertilizers_captured_processes_co2_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_fertilizers_captured_processes_co2 IF newly built (green field approach) - -- query = present:MV(industry_chemicals_fertilizers_captured_processes_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index c5f808515a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_other_burner_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_other_burner_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_future_in_investment_cost_table.gql deleted file mode 100644 index cabe28e17c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_burner_coal IF newly built (green field approach) - -- query = future:V(industry_chemicals_other_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_present_in_investment_cost_table.gql deleted file mode 100644 index a4610e6045..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_burner_coal IF newly built (green field approach) - -- query = present:V(industry_chemicals_other_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 7cf71141e5..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_other_burner_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_other_burner_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index 11ba850f49..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_burner_crude_oil IF newly built (green field approach) - -- query = future:V(industry_chemicals_other_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index 59d907763c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_burner_crude_oil IF newly built (green field approach) - -- query = present:V(industry_chemicals_other_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index 6f8b93e8d4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_other_burner_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_other_burner_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index 34bfbf40dd..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_burner_hydrogen IF newly built (green field approach) - -- query = future:V(industry_chemicals_other_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index 876c69a8f9..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_burner_hydrogen IF newly built (green field approach) - -- query = present:V(industry_chemicals_other_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index e5b76c90e4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_other_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_other_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 1740a87d01..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_burner_network_gas IF newly built (green field approach) - -- query = future:V(industry_chemicals_other_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index bacaa9a675..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_burner_network_gas IF newly built (green field approach) - -- query = present:V(industry_chemicals_other_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index 7e02c14db3..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_other_burner_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_other_burner_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index 8e37ce162a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_burner_wood_pellets IF newly built (green field approach) - -- query = future:V(industry_chemicals_other_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index 1ca3e79d64..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_burner_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_burner_wood_pellets IF newly built (green field approach) - -- query = present:V(industry_chemicals_other_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 5403b6abff..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_other_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_other_flexibility_p2h_hydrogen_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 096b01266c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = future:V(industry_chemicals_other_flexibility_p2h_hydrogen_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 65bb6dd351..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = present:V(industry_chemicals_other_flexibility_p2h_hydrogen_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 35d65a8ccb..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_other_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_other_flexibility_p2h_network_gas_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index c8541419bd..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = future:V(industry_chemicals_other_flexibility_p2h_network_gas_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index eaf7975cc1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = present:V(industry_chemicals_other_flexibility_p2h_network_gas_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 922a7568f0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_other_heater_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_other_heater_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 4bcddeb811..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_heater_electricity IF newly built (green field approach) - -- query = future:V(industry_chemicals_other_heater_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 733b3142ef..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heater_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_heater_electricity IF newly built (green field approach) - -- query = present:V(industry_chemicals_other_heater_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index c6de6905d2..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_other_heatpump_water_water_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_other_heatpump_water_water_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 2c8ca34c6e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_heatpump_water_water_electricity IF newly built (green field approach) - -- query = future:V(industry_chemicals_other_heatpump_water_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index ad75c7708e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_heatpump_water_water_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_heatpump_water_water_electricity IF newly built (green field approach) - -- query = present:V(industry_chemicals_other_heatpump_water_water_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 9ad91d38fa..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_other_steam_recompression_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_other_steam_recompression_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index a5df96d677..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_steam_recompression_electricity IF newly built (green field approach) - -- query = future:V(industry_chemicals_other_steam_recompression_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index cd0ef8c080..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_other_steam_recompression_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_other_steam_recompression_electricity IF newly built (green field approach) - -- query = present:V(industry_chemicals_other_steam_recompression_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index a08da4650b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_refineries_burner_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 74a9770404..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_coal IF newly built (green field approach) - -- query = future:V(industry_chemicals_refineries_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 2c19739aec..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_coal IF newly built (green field approach) - -- query = present:V(industry_chemicals_refineries_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 06e2e30d0a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_refineries_burner_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index bf341dcbc1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_crude_oil IF newly built (green field approach) - -- query = future:V(industry_chemicals_refineries_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index 1287d164ad..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_crude_oil IF newly built (green field approach) - -- query = present:V(industry_chemicals_refineries_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index 14138ab54b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_refineries_burner_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index 70d7072fea..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_hydrogen IF newly built (green field approach) - -- query = future:V(industry_chemicals_refineries_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index 62d25b789e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_hydrogen IF newly built (green field approach) - -- query = present:V(industry_chemicals_refineries_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 520bfd8aef..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_refineries_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index bf2b5a93b9..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_network_gas IF newly built (green field approach) - -- query = future:V(industry_chemicals_refineries_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index bf5b717c96..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_network_gas IF newly built (green field approach) - -- query = present:V(industry_chemicals_refineries_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index f5b6e60771..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_refineries_burner_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index b8e146f26c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_wood_pellets IF newly built (green field approach) - -- query = future:V(industry_chemicals_refineries_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index e23b85f3e7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_burner_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_burner_wood_pellets IF newly built (green field approach) - -- query = present:V(industry_chemicals_refineries_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 5c28f77d6c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index f1ec0a5162..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = future:V(industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 6794a13582..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = present:V(industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 00af9c8984..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chemicals_refineries_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chemicals_refineries_flexibility_p2h_network_gas_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 6848ac5e8e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = future:V(industry_chemicals_refineries_flexibility_p2h_network_gas_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 9ab0fb4b2c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chemicals_refineries_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = present:V(industry_chemicals_refineries_flexibility_p2h_network_gas_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_delta_in_investment_cost_table.gql deleted file mode 100644 index c13b0c4cd7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chp_combined_cycle_gas_power_fuelmix IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chp_combined_cycle_gas_power_fuelmix,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_future_in_investment_cost_table.gql deleted file mode 100644 index 0453b7c430..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chp_combined_cycle_gas_power_fuelmix IF newly built (green field approach) - -- query = future:V(industry_chp_combined_cycle_gas_power_fuelmix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_present_in_investment_cost_table.gql deleted file mode 100644 index 71aa77c340..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_combined_cycle_gas_power_fuelmix_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chp_combined_cycle_gas_power_fuelmix IF newly built (green field approach) - -- query = present:V(industry_chp_combined_cycle_gas_power_fuelmix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_delta_in_investment_cost_table.gql deleted file mode 100644 index 9bb2e6ba1e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chp_engine_gas_power_fuelmix IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chp_engine_gas_power_fuelmix,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_future_in_investment_cost_table.gql deleted file mode 100644 index 4ed8f111b1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chp_engine_gas_power_fuelmix IF newly built (green field approach) - -- query = future:V(industry_chp_engine_gas_power_fuelmix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_present_in_investment_cost_table.gql deleted file mode 100644 index 24eb95788d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_engine_gas_power_fuelmix_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chp_engine_gas_power_fuelmix IF newly built (green field approach) - -- query = present:V(industry_chp_engine_gas_power_fuelmix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_delta_in_investment_cost_table.gql deleted file mode 100644 index 455b6031c5..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chp_turbine_gas_power_fuelmix IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chp_turbine_gas_power_fuelmix,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_future_in_investment_cost_table.gql deleted file mode 100644 index ce7c1eea33..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chp_turbine_gas_power_fuelmix IF newly built (green field approach) - -- query = future:V(industry_chp_turbine_gas_power_fuelmix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_present_in_investment_cost_table.gql deleted file mode 100644 index 923e3ab271..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_turbine_gas_power_fuelmix_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chp_turbine_gas_power_fuelmix IF newly built (green field approach) - -- query = present:V(industry_chp_turbine_gas_power_fuelmix, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 7a38e76920..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chp_ultra_supercritical_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chp_ultra_supercritical_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 898aa72ddc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chp_ultra_supercritical_coal IF newly built (green field approach) - -- query = future:V(industry_chp_ultra_supercritical_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 653667b5d6..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_ultra_supercritical_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chp_ultra_supercritical_coal IF newly built (green field approach) - -- query = present:V(industry_chp_ultra_supercritical_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index d09afa501a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_chp_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_chp_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index 99141912b3..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chp_wood_pellets IF newly built (green field approach) - -- query = future:V(industry_chp_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index 480cbb9367..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_chp_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_chp_wood_pellets IF newly built (green field approach) - -- query = present:V(industry_chp_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index de6a9aee9c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_heat_backup_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_heat_backup_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index cfd27da1ec..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_heat_backup_burner_network_gas IF newly built (green field approach) - -- query = future:V(industry_heat_backup_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 0d83410171..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_backup_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_heat_backup_burner_network_gas IF newly built (green field approach) - -- query = present:V(industry_heat_backup_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index edf2cacd9a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_heat_burner_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_heat_burner_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 8f3f72eb4c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_heat_burner_coal IF newly built (green field approach) - -- query = future:V(industry_heat_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 42e3cb2050..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_heat_burner_coal IF newly built (green field approach) - -- query = present:V(industry_heat_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 69a3544a6e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_heat_burner_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_heat_burner_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index 1ceb639d9f..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_heat_burner_crude_oil IF newly built (green field approach) - -- query = future:V(industry_heat_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index ac7ae8d377..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_heat_burner_crude_oil IF newly built (green field approach) - -- query = present:V(industry_heat_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_delta_in_investment_cost_table.gql deleted file mode 100644 index a87e868825..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_heat_burner_lignite IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_heat_burner_lignite,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_future_in_investment_cost_table.gql deleted file mode 100644 index 0ceca8d60c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_heat_burner_lignite IF newly built (green field approach) - -- query = future:V(industry_heat_burner_lignite, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_present_in_investment_cost_table.gql deleted file mode 100644 index 76e35eaff2..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_burner_lignite_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_heat_burner_lignite IF newly built (green field approach) - -- query = present:V(industry_heat_burner_lignite, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_delta_in_investment_cost_table.gql deleted file mode 100644 index 35ceedffa1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_heat_well_geothermal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_heat_well_geothermal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_future_in_investment_cost_table.gql deleted file mode 100644 index c8ad6490af..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_heat_well_geothermal IF newly built (green field approach) - -- query = future:V(industry_heat_well_geothermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_present_in_investment_cost_table.gql deleted file mode 100644 index 4d0504c8eb..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_heat_well_geothermal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_heat_well_geothermal IF newly built (green field approach) - -- query = present:V(industry_heat_well_geothermal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index 8c341b1870..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_food_burner_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_food_burner_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 6aba1b12a3..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_burner_coal IF newly built (green field approach) - -- query = future:V(industry_other_food_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_present_in_investment_cost_table.gql deleted file mode 100644 index a55fcd5258..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_burner_coal IF newly built (green field approach) - -- query = present:V(industry_other_food_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 9aeffa83f7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_food_burner_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_food_burner_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index fb4b5a46a5..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_burner_crude_oil IF newly built (green field approach) - -- query = future:V(industry_other_food_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index 39a601272d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_burner_crude_oil IF newly built (green field approach) - -- query = present:V(industry_other_food_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index 5b006a046a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_food_burner_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_food_burner_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index 3ea022edf7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_burner_hydrogen IF newly built (green field approach) - -- query = future:V(industry_other_food_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index b524c04db1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_burner_hydrogen IF newly built (green field approach) - -- query = present:V(industry_other_food_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 5877aca251..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_food_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_food_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index ad22d9c112..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_burner_network_gas IF newly built (green field approach) - -- query = future:V(industry_other_food_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 536f234354..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_burner_network_gas IF newly built (green field approach) - -- query = present:V(industry_other_food_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index a06e890efe..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_food_burner_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_food_burner_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index 93cbef8da0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_burner_wood_pellets IF newly built (green field approach) - -- query = future:V(industry_other_food_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index ca1a79b67c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_burner_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_burner_wood_pellets IF newly built (green field approach) - -- query = present:V(industry_other_food_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_delta_in_investment_cost_table.gql deleted file mode 100644 index e81f4ebdfc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_food_captured_co2 IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - MV(industry_other_food_captured_co2,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_future_in_investment_cost_table.gql deleted file mode 100644 index 0773d88a60..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_captured_co2 IF newly built (green field approach) - -- query = future:MV(industry_other_food_captured_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_present_in_investment_cost_table.gql deleted file mode 100644 index 570740e41d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_captured_co2_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_captured_co2 IF newly built (green field approach) - -- query = present:MV(industry_other_food_captured_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 1628caba6a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_food_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_food_flexibility_p2h_hydrogen_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index e451f27696..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = future:V(industry_other_food_flexibility_p2h_hydrogen_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 7d63d0400a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = present:V(industry_other_food_flexibility_p2h_hydrogen_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 723c63897c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_food_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_food_flexibility_p2h_network_gas_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 005cabb3ef..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = future:V(industry_other_food_flexibility_p2h_network_gas_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index dec9bddc88..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = present:V(industry_other_food_flexibility_p2h_network_gas_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 83f57c0882..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_food_heater_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_food_heater_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 4cd879d045..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_heater_electricity IF newly built (green field approach) - -- query = future:V(industry_other_food_heater_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index edb4853fcd..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_food_heater_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_food_heater_electricity IF newly built (green field approach) - -- query = present:V(industry_other_food_heater_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 6d295c7da2..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_metals_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_metals_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 82296039fb..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_metals_burner_network_gas IF newly built (green field approach) - -- query = future:V(industry_other_metals_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 64dfe6773e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_metals_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_metals_burner_network_gas IF newly built (green field approach) - -- query = present:V(industry_other_metals_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index e19ab0e407..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_paper_burner_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_paper_burner_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_future_in_investment_cost_table.gql deleted file mode 100644 index bb59b3a62a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_burner_coal IF newly built (green field approach) - -- query = future:V(industry_other_paper_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_present_in_investment_cost_table.gql deleted file mode 100644 index ea0a56daaf..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_burner_coal IF newly built (green field approach) - -- query = present:V(industry_other_paper_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 0be8918977..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_paper_burner_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_paper_burner_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index 7f764bb22b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_burner_crude_oil IF newly built (green field approach) - -- query = future:V(industry_other_paper_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index 086baf3246..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_burner_crude_oil IF newly built (green field approach) - -- query = present:V(industry_other_paper_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_delta_in_investment_cost_table.gql deleted file mode 100644 index d96187ccb1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_paper_burner_hydrogen IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_paper_burner_hydrogen,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_future_in_investment_cost_table.gql deleted file mode 100644 index c716f0a20b..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_burner_hydrogen IF newly built (green field approach) - -- query = future:V(industry_other_paper_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_present_in_investment_cost_table.gql deleted file mode 100644 index d35273fa8e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_hydrogen_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_burner_hydrogen IF newly built (green field approach) - -- query = present:V(industry_other_paper_burner_hydrogen, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index b051afa04c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_paper_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_paper_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 1bfdda9484..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_burner_network_gas IF newly built (green field approach) - -- query = future:V(industry_other_paper_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 8278628483..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_burner_network_gas IF newly built (green field approach) - -- query = present:V(industry_other_paper_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index 6285ff17c1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_paper_burner_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_paper_burner_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index e823e08f38..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_burner_wood_pellets IF newly built (green field approach) - -- query = future:V(industry_other_paper_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index bc355c44bb..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_burner_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_burner_wood_pellets IF newly built (green field approach) - -- query = present:V(industry_other_paper_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_delta_in_investment_cost_table.gql deleted file mode 100644 index 6879518402..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_paper_captured_co2 IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - MV(industry_other_paper_captured_co2,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_future_in_investment_cost_table.gql deleted file mode 100644 index 79ea880e3d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_captured_co2 IF newly built (green field approach) - -- query = future:MV(industry_other_paper_captured_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_present_in_investment_cost_table.gql deleted file mode 100644 index af11f754ad..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_captured_co2_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_captured_co2 IF newly built (green field approach) - -- query = present:MV(industry_other_paper_captured_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index 358501998c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_paper_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_paper_flexibility_p2h_hydrogen_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 2cc71bb879..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = future:V(industry_other_paper_flexibility_p2h_hydrogen_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index c8c66910fc..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_flexibility_p2h_hydrogen_electricity IF newly built (green field approach) - -- query = present:V(industry_other_paper_flexibility_p2h_hydrogen_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index cb6c04d05c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_paper_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_paper_flexibility_p2h_network_gas_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index 5003292471..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = future:V(industry_other_paper_flexibility_p2h_network_gas_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 73e5aa273c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_flexibility_p2h_network_gas_electricity IF newly built (green field approach) - -- query = present:V(industry_other_paper_flexibility_p2h_network_gas_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_delta_in_investment_cost_table.gql deleted file mode 100644 index c73bbb3d14..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_other_paper_heater_electricity IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_other_paper_heater_electricity,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_future_in_investment_cost_table.gql deleted file mode 100644 index a95ae1903a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_heater_electricity IF newly built (green field approach) - -- query = future:V(industry_other_paper_heater_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_present_in_investment_cost_table.gql deleted file mode 100644 index 44f895b2b1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_other_paper_heater_electricity_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_other_paper_heater_electricity IF newly built (green field approach) - -- query = present:V(industry_other_paper_heater_electricity, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_bof_captured_co2_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_bof_captured_co2_delta_in_investment_cost_table.gql deleted file mode 100644 index 65e2be566a..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_bof_captured_co2_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_steel_blastfurnace_bof_captured_co2 IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - MV(industry_steel_blastfurnace_bof_captured_co2,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_bof_captured_co2_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_bof_captured_co2_future_in_investment_cost_table.gql deleted file mode 100644 index a7046f506c..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_bof_captured_co2_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_steel_blastfurnace_bof_captured_co2 IF newly built (green field approach) - -- query = future:MV(industry_steel_blastfurnace_bof_captured_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 3df1161e94..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_steel_blastfurnace_burner_coal_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_steel_blastfurnace_burner_coal_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 77d700faee..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_steel_blastfurnace_burner_coal_gas IF newly built (green field approach) - -- query = future:V(industry_steel_blastfurnace_burner_coal_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 3e20cfad2d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_blastfurnace_burner_coal_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_steel_blastfurnace_burner_coal_gas IF newly built (green field approach) - -- query = present:V(industry_steel_blastfurnace_burner_coal_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index bd0ed18b48..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_steel_electricfurnace_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(industry_steel_electricfurnace_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index 1d4584c3e2..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_steel_electricfurnace_burner_network_gas IF newly built (green field approach) - -- query = future:V(industry_steel_electricfurnace_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 94ece2b52e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_electricfurnace_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_steel_electricfurnace_burner_network_gas IF newly built (green field approach) - -- query = present:V(industry_steel_electricfurnace_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_delta_in_investment_cost_table.gql deleted file mode 100644 index cd1655ad47..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of industry_steel_scrap_hbi_eaf_captured_co2 IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - MV(industry_steel_scrap_hbi_eaf_captured_co2,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_future_in_investment_cost_table.gql deleted file mode 100644 index 7cd165275e..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_steel_scrap_hbi_eaf_captured_co2 IF newly built (green field approach) - -- query = future:MV(industry_steel_scrap_hbi_eaf_captured_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_present_in_investment_cost_table.gql deleted file mode 100644 index af835c34e1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/industry_steel_scrap_hbi_eaf_captured_co2_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of industry_steel_scrap_hbi_eaf_captured_co2 IF newly built (green field approach) - -- query = present:MV(industry_steel_scrap_hbi_eaf_captured_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_delta_in_investment_cost_table.gql deleted file mode 100644 index 2b0e222eab..0000000000 --- a/gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of molecules_direct_air_capture_co2 IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - MV(molecules_direct_air_capture_co2,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_future_in_investment_cost_table.gql deleted file mode 100644 index 431884d789..0000000000 --- a/gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of molecules_direct_air_capture_co2 IF newly built (green field approach) - -- query = future:MV(molecules_direct_air_capture_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_present_in_investment_cost_table.gql deleted file mode 100644 index 51f68f927d..0000000000 --- a/gqueries/output_elements/output_series/investment_table/molecules_direct_air_capture_co2_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of molecules_direct_air_capture_co2 IF newly built (green field approach) - -- query = present:MV(molecules_direct_air_capture_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_delta_in_investment_cost_table.gql deleted file mode 100644 index 67073ecd14..0000000000 --- a/gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of molecules_offshore_sequestration_co2 IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - MV(molecules_offshore_sequestration_co2,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_future_in_investment_cost_table.gql deleted file mode 100644 index 8da2f7f030..0000000000 --- a/gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of molecules_offshore_sequestration_co2 IF newly built (green field approach) - -- query = future:MV(molecules_offshore_sequestration_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_present_in_investment_cost_table.gql deleted file mode 100644 index a916f724ae..0000000000 --- a/gqueries/output_elements/output_series/investment_table/molecules_offshore_sequestration_co2_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of molecules_offshore_sequestration_co2 IF newly built (green field approach) - -- query = present:MV(molecules_offshore_sequestration_co2, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_coal_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_coal_delta_in_investment_cost_table.gql deleted file mode 100644 index da43caacb5..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_coal_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of other_burner_coal IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(other_burner_coal,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_coal_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_coal_future_in_investment_cost_table.gql deleted file mode 100644 index 8b44874d94..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_coal_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of other_burner_coal IF newly built (green field approach) - -- query = future:V(other_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_coal_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_coal_present_in_investment_cost_table.gql deleted file mode 100644 index 95408e4d12..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_coal_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of other_burner_coal IF newly built (green field approach) - -- query = present:V(other_burner_coal, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_delta_in_investment_cost_table.gql deleted file mode 100644 index 49b72d8173..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of other_burner_crude_oil IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(other_burner_crude_oil,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_future_in_investment_cost_table.gql deleted file mode 100644 index 44535bd828..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of other_burner_crude_oil IF newly built (green field approach) - -- query = future:V(other_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_present_in_investment_cost_table.gql deleted file mode 100644 index 9dda63c8e0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_crude_oil_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of other_burner_crude_oil IF newly built (green field approach) - -- query = present:V(other_burner_crude_oil, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_network_gas_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_network_gas_delta_in_investment_cost_table.gql deleted file mode 100644 index 04b17b8fde..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_network_gas_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of other_burner_network_gas IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(other_burner_network_gas,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_network_gas_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_network_gas_future_in_investment_cost_table.gql deleted file mode 100644 index dfb3ff0f06..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_network_gas_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of other_burner_network_gas IF newly built (green field approach) - -- query = future:V(other_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_network_gas_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_network_gas_present_in_investment_cost_table.gql deleted file mode 100644 index 9fe9a3c3da..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_network_gas_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of other_burner_network_gas IF newly built (green field approach) - -- query = present:V(other_burner_network_gas, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_delta_in_investment_cost_table.gql deleted file mode 100644 index a705ce35f4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,7 +0,0 @@ -# investment costs of other_burner_wood_pellets IF newly built (green field approach) - -- query = - QUERY_DELTA( -> { - V(other_burner_wood_pellets,total_investment_over_lifetime_per(:node)) - }) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_future_in_investment_cost_table.gql deleted file mode 100644 index 90632305c0..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_future_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of other_burner_wood_pellets IF newly built (green field approach) - -- query = future:V(other_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_present_in_investment_cost_table.gql deleted file mode 100644 index 84f8dc1da4..0000000000 --- a/gqueries/output_elements/output_series/investment_table/other_burner_wood_pellets_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of other_burner_wood_pellets IF newly built (green field approach) - -- query = present:V(other_burner_wood_pellets, total_investment_over_lifetime_per(:node)) / BILLIONS -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/total_delta_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/total_delta_in_investment_cost_table.gql deleted file mode 100644 index a3aff5d9c1..0000000000 --- a/gqueries/output_elements/output_series/investment_table/total_delta_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of %s IF newly built (green field approach) - -- query = SUM(Q(households_space_heater_coal_delta_in_investment_cost_table),Q(households_space_heater_combined_network_gas_delta_in_investment_cost_table),Q(households_space_heater_combined_hydrogen_delta_in_investment_cost_table),Q(households_space_heater_crude_oil_delta_in_investment_cost_table),Q(households_space_heater_electricity_delta_in_investment_cost_table),Q(households_space_heater_heatpump_air_water_electricity_delta_in_investment_cost_table),Q(households_space_heater_heatpump_ground_water_electricity_delta_in_investment_cost_table),Q(households_space_heater_hybrid_heatpump_air_water_electricity_delta_in_investment_cost_table),Q(households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_delta_in_investment_cost_table),Q(households_space_heater_network_gas_delta_in_investment_cost_table),Q(households_space_heater_wood_pellets_delta_in_investment_cost_table),Q(households_water_heater_resistive_electricity_delta_in_investment_cost_table),Q(households_water_heater_solar_thermal_delta_in_investment_cost_table),Q(households_solar_pv_solar_radiation_delta_in_investment_cost_table),Q(households_cooling_airconditioning_electricity_delta_in_investment_cost_table),Q(buildings_space_heater_coal_delta_in_investment_cost_table),Q(buildings_space_heater_heatpump_air_water_network_gas_delta_in_investment_cost_table),Q(buildings_space_heater_heatpump_air_water_electricity_delta_in_investment_cost_table),Q(buildings_space_heater_collective_heatpump_water_water_ts_electricity_delta_in_investment_cost_table),Q(buildings_space_heater_crude_oil_delta_in_investment_cost_table),Q(buildings_space_heater_electricity_delta_in_investment_cost_table),Q(buildings_space_heater_network_gas_delta_in_investment_cost_table),Q(buildings_space_heater_combined_hydrogen_delta_in_investment_cost_table),Q(buildings_space_heater_wood_pellets_delta_in_investment_cost_table),Q(buildings_space_heater_solar_thermal_delta_in_investment_cost_table),Q(buildings_solar_pv_solar_radiation_delta_in_investment_cost_table),Q(buildings_cooling_airconditioning_electricity_delta_in_investment_cost_table),Q(agriculture_burner_crude_oil_delta_in_investment_cost_table),Q(agriculture_burner_network_gas_delta_in_investment_cost_table),Q(agriculture_burner_wood_pellets_delta_in_investment_cost_table),Q(agriculture_geothermal_delta_in_investment_cost_table),Q(agriculture_heatpump_water_water_ts_electricity_delta_in_investment_cost_table),Q(agriculture_burner_hydrogen_delta_in_investment_cost_table),Q(industry_aluminium_burner_network_gas_delta_in_investment_cost_table),Q(industry_chemicals_fertilizers_burner_coal_delta_in_investment_cost_table),Q(industry_chemicals_fertilizers_burner_crude_oil_delta_in_investment_cost_table),Q(industry_chemicals_fertilizers_burner_hydrogen_delta_in_investment_cost_table),Q(industry_chemicals_fertilizers_burner_network_gas_delta_in_investment_cost_table),Q(industry_chemicals_fertilizers_burner_wood_pellets_delta_in_investment_cost_table),Q(industry_chemicals_other_burner_coal_delta_in_investment_cost_table),Q(industry_chemicals_other_burner_crude_oil_delta_in_investment_cost_table),Q(industry_chemicals_other_burner_hydrogen_delta_in_investment_cost_table),Q(industry_chemicals_other_burner_network_gas_delta_in_investment_cost_table),Q(industry_chemicals_other_burner_wood_pellets_delta_in_investment_cost_table),Q(industry_chemicals_other_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table),Q(industry_chemicals_other_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table),Q(industry_chemicals_other_heater_electricity_delta_in_investment_cost_table),Q(industry_chemicals_other_heatpump_water_water_electricity_delta_in_investment_cost_table),Q(industry_chemicals_other_steam_recompression_electricity_delta_in_investment_cost_table),Q(industry_chemicals_refineries_burner_coal_delta_in_investment_cost_table),Q(industry_chemicals_refineries_burner_crude_oil_delta_in_investment_cost_table),Q(industry_chemicals_refineries_burner_hydrogen_delta_in_investment_cost_table),Q(industry_chemicals_refineries_burner_network_gas_delta_in_investment_cost_table),Q(industry_chemicals_refineries_burner_wood_pellets_delta_in_investment_cost_table),Q(industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table),Q(industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table),Q(industry_chp_combined_cycle_gas_power_fuelmix_delta_in_investment_cost_table),Q(industry_chp_engine_gas_power_fuelmix_delta_in_investment_cost_table),Q(industry_chp_turbine_gas_power_fuelmix_delta_in_investment_cost_table),Q(industry_chp_ultra_supercritical_coal_delta_in_investment_cost_table),Q(industry_chp_wood_pellets_delta_in_investment_cost_table),Q(industry_heat_backup_burner_network_gas_delta_in_investment_cost_table),Q(industry_heat_burner_coal_delta_in_investment_cost_table),Q(industry_heat_burner_crude_oil_delta_in_investment_cost_table),Q(industry_heat_burner_lignite_delta_in_investment_cost_table),Q(industry_heat_well_geothermal_delta_in_investment_cost_table),Q(industry_other_food_burner_coal_delta_in_investment_cost_table),Q(industry_other_food_burner_crude_oil_delta_in_investment_cost_table),Q(industry_other_food_burner_hydrogen_delta_in_investment_cost_table),Q(industry_other_food_burner_network_gas_delta_in_investment_cost_table),Q(industry_other_food_burner_wood_pellets_delta_in_investment_cost_table),Q(industry_other_food_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table),Q(industry_other_food_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table),Q(industry_other_food_heater_electricity_delta_in_investment_cost_table),Q(industry_other_metals_burner_network_gas_delta_in_investment_cost_table),Q(industry_other_paper_burner_coal_delta_in_investment_cost_table),Q(industry_other_paper_burner_crude_oil_delta_in_investment_cost_table),Q(industry_other_paper_burner_hydrogen_delta_in_investment_cost_table),Q(industry_other_paper_burner_network_gas_delta_in_investment_cost_table),Q(industry_other_paper_burner_wood_pellets_delta_in_investment_cost_table),Q(industry_other_paper_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table),Q(industry_other_paper_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table),Q(industry_other_paper_heater_electricity_delta_in_investment_cost_table),Q(industry_steel_blastfurnace_burner_coal_gas_delta_in_investment_cost_table),Q(industry_steel_electricfurnace_burner_network_gas_delta_in_investment_cost_table),Q(energy_chp_local_engine_biogas_delta_in_investment_cost_table),Q(energy_chp_local_engine_network_gas_delta_in_investment_cost_table),Q(energy_chp_local_wood_pellets_delta_in_investment_cost_table),Q(energy_heat_backup_burner_network_gas_delta_in_investment_cost_table),Q(energy_heat_burner_coal_delta_in_investment_cost_table),Q(energy_heat_burner_crude_oil_delta_in_investment_cost_table),Q(energy_heat_burner_hydrogen_delta_in_investment_cost_table),Q(energy_heat_burner_network_gas_delta_in_investment_cost_table),Q(energy_heat_burner_waste_mix_delta_in_investment_cost_table),Q(energy_heat_burner_wood_pellets_delta_in_investment_cost_table),Q(energy_heat_heatpump_water_water_electricity_delta_in_investment_cost_table),Q(energy_heat_solar_thermal_delta_in_investment_cost_table),Q(energy_heat_well_geothermal_delta_in_investment_cost_table),Q(energy_power_combined_cycle_coal_delta_in_investment_cost_table),Q(energy_power_combined_cycle_ccs_coal_delta_in_investment_cost_table),Q(energy_power_supercritical_coal_delta_in_investment_cost_table),Q(energy_power_ultra_supercritical_coal_delta_in_investment_cost_table),Q(energy_power_ultra_supercritical_ccs_coal_delta_in_investment_cost_table),Q(energy_power_ultra_supercritical_cofiring_coal_delta_in_investment_cost_table),Q(energy_chp_ultra_supercritical_coal_delta_in_investment_cost_table),Q(energy_chp_ultra_supercritical_cofiring_coal_delta_in_investment_cost_table),Q(energy_power_combined_cycle_network_gas_delta_in_investment_cost_table),Q(energy_power_combined_cycle_ccs_network_gas_delta_in_investment_cost_table),Q(energy_power_turbine_network_gas_delta_in_investment_cost_table),Q(energy_power_ultra_supercritical_network_gas_delta_in_investment_cost_table),Q(energy_chp_combined_cycle_network_gas_delta_in_investment_cost_table),Q(energy_power_ultra_supercritical_crude_oil_delta_in_investment_cost_table),Q(energy_power_engine_diesel_delta_in_investment_cost_table),Q(energy_power_nuclear_gen2_uranium_oxide_delta_in_investment_cost_table),Q(energy_power_nuclear_gen3_uranium_oxide_delta_in_investment_cost_table),Q(energy_power_supercritical_waste_mix_delta_in_investment_cost_table),Q(energy_power_supercritical_ccs_waste_mix_delta_in_investment_cost_table),Q(energy_chp_supercritical_waste_mix_delta_in_investment_cost_table),Q(energy_chp_supercritical_ccs_waste_mix_delta_in_investment_cost_table),Q(energy_power_ultra_supercritical_lignite_delta_in_investment_cost_table),Q(energy_power_ultra_supercritical_oxyfuel_ccs_lignite_delta_in_investment_cost_table),Q(energy_chp_ultra_supercritical_lignite_delta_in_investment_cost_table),Q(energy_power_solar_csp_solar_radiation_delta_in_investment_cost_table),Q(energy_power_solar_pv_solar_radiation_delta_in_investment_cost_table),Q(energy_power_geothermal_delta_in_investment_cost_table),Q(energy_power_hydro_mountain_delta_in_investment_cost_table),Q(energy_power_hydro_river_delta_in_investment_cost_table),Q(energy_power_turbine_hydrogen_delta_in_investment_cost_table),Q(energy_power_combined_cycle_hydrogen_delta_in_investment_cost_table),Q(energy_power_wind_turbine_coastal_delta_in_investment_cost_table),Q(energy_power_wind_turbine_inland_delta_in_investment_cost_table),Q(energy_power_wind_turbine_offshore_delta_in_investment_cost_table),Q(energy_biogas_fermentation_wet_biomass_delta_in_investment_cost_table),Q(energy_greengas_gasification_wet_biomass_delta_in_investment_cost_table),Q(energy_greengas_gasification_dry_biomass_delta_in_investment_cost_table),Q(households_flexibility_p2p_electricity_delta_in_investment_cost_table),Q(industry_other_paper_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table),Q(industry_other_paper_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table),Q(industry_other_food_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table),Q(industry_other_food_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table),Q(industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table),Q(industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table),Q(industry_chemicals_other_flexibility_p2h_network_gas_electricity_delta_in_investment_cost_table),Q(industry_chemicals_other_flexibility_p2h_hydrogen_electricity_delta_in_investment_cost_table),Q(energy_hydrogen_flexibility_p2g_electricity_delta_in_investment_cost_table),Q(energy_flexibility_hv_opac_electricity_delta_in_investment_cost_table),Q(energy_flexibility_mv_batteries_electricity_delta_in_investment_cost_table),Q(other_burner_coal_delta_in_investment_cost_table),Q(other_burner_crude_oil_delta_in_investment_cost_table),Q(other_burner_network_gas_delta_in_investment_cost_table),Q(other_burner_wood_pellets_delta_in_investment_cost_table),Q(industry_chemicals_fertilizers_captured_combustion_co2_delta_in_investment_cost_table),Q(industry_chemicals_fertilizers_captured_processes_co2_delta_in_investment_cost_table),Q(industry_other_food_captured_co2_delta_in_investment_cost_table),Q(industry_other_paper_captured_co2_delta_in_investment_cost_table),Q(industry_steel_blastfurnace_bof_captured_co2_delta_in_investment_cost_table),Q(industry_steel_scrap_hbi_eaf_captured_co2_delta_in_investment_cost_table),Q(industry_steel_cyclonefurnace_bof_captured_co2_delta_in_investment_cost_table),Q(industry_steel_dri_hydrogen_eaf_captured_co2_delta_in_investment_cost_table),Q(industry_steel_dri_network_gas_eaf_captured_co2_delta_in_investment_cost_table),Q(molecules_direct_air_capture_co2_delta_in_investment_cost_table),Q(molecules_offshore_sequestration_co2_delta_in_investment_cost_table),Q(energy_production_synthetic_methanol_delta_in_investment_cost_table),Q(energy_production_synthetic_kerosene_delta_in_investment_cost_table),) -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/total_future_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/total_future_in_investment_cost_table.gql deleted file mode 100644 index 1ba0734783..0000000000 --- a/gqueries/output_elements/output_series/investment_table/total_future_in_investment_cost_table.gql +++ /dev/null @@ -1,167 +0,0 @@ -# investment costs of %s IF newly built (green field approach) - -- query = - SUM( - Q(households_space_heater_coal_future_in_investment_cost_table), - Q(households_space_heater_combined_network_gas_future_in_investment_cost_table), - Q(households_space_heater_combined_hydrogen_future_in_investment_cost_table), - Q(households_space_heater_crude_oil_future_in_investment_cost_table), - Q(households_space_heater_electricity_future_in_investment_cost_table), - Q(households_space_heater_heatpump_air_water_electricity_future_in_investment_cost_table), - Q(households_space_heater_heatpump_ground_water_electricity_future_in_investment_cost_table), - Q(households_space_heater_hybrid_heatpump_air_water_electricity_future_in_investment_cost_table), - Q(households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_future_in_investment_cost_table), - Q(households_space_heater_network_gas_future_in_investment_cost_table), - Q(households_space_heater_wood_pellets_future_in_investment_cost_table), - Q(households_water_heater_resistive_electricity_future_in_investment_cost_table), - Q(households_water_heater_solar_thermal_future_in_investment_cost_table), - Q(households_solar_pv_solar_radiation_future_in_investment_cost_table), - Q(households_cooling_airconditioning_electricity_future_in_investment_cost_table), - Q(buildings_space_heater_coal_future_in_investment_cost_table), - Q(buildings_space_heater_heatpump_air_water_network_gas_future_in_investment_cost_table), - Q(buildings_space_heater_heatpump_air_water_electricity_future_in_investment_cost_table), - Q(buildings_space_heater_collective_heatpump_water_water_ts_electricity_future_in_investment_cost_table), - Q(buildings_space_heater_crude_oil_future_in_investment_cost_table), - Q(buildings_space_heater_electricity_future_in_investment_cost_table), - Q(buildings_space_heater_network_gas_future_in_investment_cost_table), - Q(buildings_space_heater_combined_hydrogen_future_in_investment_cost_table), - Q(buildings_space_heater_wood_pellets_future_in_investment_cost_table), - Q(buildings_space_heater_solar_thermal_future_in_investment_cost_table), - Q(buildings_solar_pv_solar_radiation_future_in_investment_cost_table), - Q(buildings_cooling_airconditioning_electricity_future_in_investment_cost_table), - Q(agriculture_burner_crude_oil_future_in_investment_cost_table), - Q(agriculture_burner_network_gas_future_in_investment_cost_table), - Q(agriculture_burner_wood_pellets_future_in_investment_cost_table), - Q(agriculture_geothermal_future_in_investment_cost_table), - Q(agriculture_heatpump_water_water_ts_electricity_future_in_investment_cost_table), - Q(agriculture_burner_hydrogen_future_in_investment_cost_table), - Q(industry_aluminium_burner_network_gas_future_in_investment_cost_table), - Q(industry_chemicals_fertilizers_burner_coal_future_in_investment_cost_table), - Q(industry_chemicals_fertilizers_burner_crude_oil_future_in_investment_cost_table), - Q(industry_chemicals_fertilizers_burner_hydrogen_future_in_investment_cost_table), - Q(industry_chemicals_fertilizers_burner_network_gas_future_in_investment_cost_table), - Q(industry_chemicals_fertilizers_burner_wood_pellets_future_in_investment_cost_table), - Q(industry_chemicals_other_burner_coal_future_in_investment_cost_table), - Q(industry_chemicals_other_burner_crude_oil_future_in_investment_cost_table), - Q(industry_chemicals_other_burner_hydrogen_future_in_investment_cost_table), - Q(industry_chemicals_other_burner_network_gas_future_in_investment_cost_table), - Q(industry_chemicals_other_burner_wood_pellets_future_in_investment_cost_table), - Q(industry_chemicals_other_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table), - Q(industry_chemicals_other_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table), - Q(industry_chemicals_other_heater_electricity_future_in_investment_cost_table), - Q(industry_chemicals_other_heatpump_water_water_electricity_future_in_investment_cost_table), - Q(industry_chemicals_other_steam_recompression_electricity_future_in_investment_cost_table), - Q(industry_chemicals_refineries_burner_coal_future_in_investment_cost_table), - Q(industry_chemicals_refineries_burner_crude_oil_future_in_investment_cost_table), - Q(industry_chemicals_refineries_burner_hydrogen_future_in_investment_cost_table), - Q(industry_chemicals_refineries_burner_network_gas_future_in_investment_cost_table), - Q(industry_chemicals_refineries_burner_wood_pellets_future_in_investment_cost_table), - Q(industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table), - Q(industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table), - Q(industry_chp_combined_cycle_gas_power_fuelmix_future_in_investment_cost_table), - Q(industry_chp_engine_gas_power_fuelmix_future_in_investment_cost_table), - Q(industry_chp_turbine_gas_power_fuelmix_future_in_investment_cost_table), - Q(industry_chp_ultra_supercritical_coal_future_in_investment_cost_table), - Q(industry_chp_wood_pellets_future_in_investment_cost_table), - Q(industry_heat_backup_burner_network_gas_future_in_investment_cost_table), - Q(industry_heat_burner_coal_future_in_investment_cost_table), - Q(industry_heat_burner_crude_oil_future_in_investment_cost_table), - Q(industry_heat_burner_lignite_future_in_investment_cost_table), - Q(industry_heat_well_geothermal_future_in_investment_cost_table), - Q(industry_other_food_burner_coal_future_in_investment_cost_table), - Q(industry_other_food_burner_crude_oil_future_in_investment_cost_table), - Q(industry_other_food_burner_hydrogen_future_in_investment_cost_table), - Q(industry_other_food_burner_network_gas_future_in_investment_cost_table), - Q(industry_other_food_burner_wood_pellets_future_in_investment_cost_table), - Q(industry_other_food_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table), - Q(industry_other_food_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table), - Q(industry_other_food_heater_electricity_future_in_investment_cost_table), - Q(industry_other_metals_burner_network_gas_future_in_investment_cost_table), - Q(industry_other_paper_burner_coal_future_in_investment_cost_table), - Q(industry_other_paper_burner_crude_oil_future_in_investment_cost_table), - Q(industry_other_paper_burner_hydrogen_future_in_investment_cost_table), - Q(industry_other_paper_burner_network_gas_future_in_investment_cost_table), - Q(industry_other_paper_burner_wood_pellets_future_in_investment_cost_table), - Q(industry_other_paper_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table), - Q(industry_other_paper_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table), - Q(industry_other_paper_heater_electricity_future_in_investment_cost_table), - Q(industry_steel_blastfurnace_burner_coal_gas_future_in_investment_cost_table), - Q(industry_steel_electricfurnace_burner_network_gas_future_in_investment_cost_table), - Q(energy_chp_local_engine_biogas_future_in_investment_cost_table), - Q(energy_chp_local_engine_network_gas_future_in_investment_cost_table), - Q(energy_chp_local_wood_pellets_future_in_investment_cost_table), - Q(energy_heat_backup_burner_network_gas_future_in_investment_cost_table), - Q(energy_heat_burner_coal_future_in_investment_cost_table), - Q(energy_heat_burner_crude_oil_future_in_investment_cost_table), - Q(energy_heat_burner_hydrogen_future_in_investment_cost_table), - Q(energy_heat_burner_network_gas_future_in_investment_cost_table), - Q(energy_heat_burner_waste_mix_future_in_investment_cost_table), - Q(energy_heat_burner_wood_pellets_future_in_investment_cost_table), - Q(energy_heat_heatpump_water_water_electricity_future_in_investment_cost_table), - Q(energy_heat_solar_thermal_future_in_investment_cost_table), - Q(energy_heat_well_geothermal_future_in_investment_cost_table), - Q(energy_power_combined_cycle_coal_future_in_investment_cost_table), - Q(energy_power_combined_cycle_ccs_coal_future_in_investment_cost_table), - Q(energy_power_supercritical_coal_future_in_investment_cost_table), - Q(energy_power_ultra_supercritical_coal_future_in_investment_cost_table), - Q(energy_power_ultra_supercritical_ccs_coal_future_in_investment_cost_table), - Q(energy_power_ultra_supercritical_cofiring_coal_future_in_investment_cost_table), - Q(energy_chp_ultra_supercritical_coal_future_in_investment_cost_table), - Q(energy_chp_ultra_supercritical_cofiring_coal_future_in_investment_cost_table), - Q(energy_power_combined_cycle_network_gas_future_in_investment_cost_table), - Q(energy_power_combined_cycle_ccs_network_gas_future_in_investment_cost_table), - Q(energy_power_turbine_network_gas_future_in_investment_cost_table), - Q(energy_power_ultra_supercritical_network_gas_future_in_investment_cost_table), - Q(energy_chp_combined_cycle_network_gas_future_in_investment_cost_table), - Q(energy_power_ultra_supercritical_crude_oil_future_in_investment_cost_table), - Q(energy_power_engine_diesel_future_in_investment_cost_table), - Q(energy_power_nuclear_gen2_uranium_oxide_future_in_investment_cost_table), - Q(energy_power_nuclear_gen3_uranium_oxide_future_in_investment_cost_table), - Q(energy_power_supercritical_waste_mix_future_in_investment_cost_table), - Q(energy_power_supercritical_ccs_waste_mix_future_in_investment_cost_table), - Q(energy_chp_supercritical_waste_mix_future_in_investment_cost_table), - Q(energy_chp_supercritical_ccs_waste_mix_future_in_investment_cost_table), - Q(energy_power_ultra_supercritical_lignite_future_in_investment_cost_table), - Q(energy_power_ultra_supercritical_oxyfuel_ccs_lignite_future_in_investment_cost_table), - Q(energy_chp_ultra_supercritical_lignite_future_in_investment_cost_table), - Q(energy_power_solar_csp_solar_radiation_future_in_investment_cost_table), - Q(energy_power_solar_pv_solar_radiation_future_in_investment_cost_table), - Q(energy_power_geothermal_future_in_investment_cost_table), - Q(energy_power_hydro_mountain_future_in_investment_cost_table), - Q(energy_power_hydro_river_future_in_investment_cost_table), - Q(energy_power_turbine_hydrogen_future_in_investment_cost_table), - Q(energy_power_combined_cycle_hydrogen_future_in_investment_cost_table), - Q(energy_power_wind_turbine_coastal_future_in_investment_cost_table), - Q(energy_power_wind_turbine_inland_future_in_investment_cost_table), - Q(energy_power_wind_turbine_offshore_future_in_investment_cost_table), - Q(energy_biogas_fermentation_wet_biomass_future_in_investment_cost_table), - Q(energy_greengas_gasification_wet_biomass_future_in_investment_cost_table), - Q(energy_greengas_gasification_dry_biomass_future_in_investment_cost_table), - Q(households_flexibility_p2p_electricity_future_in_investment_cost_table), - Q(industry_other_paper_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table), - Q(industry_other_paper_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table), - Q(industry_other_food_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table), - Q(industry_other_food_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table), - Q(industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table), - Q(industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table), - Q(industry_chemicals_other_flexibility_p2h_network_gas_electricity_future_in_investment_cost_table), - Q(industry_chemicals_other_flexibility_p2h_hydrogen_electricity_future_in_investment_cost_table), - Q(energy_hydrogen_flexibility_p2g_electricity_future_in_investment_cost_table), - Q(energy_flexibility_hv_opac_electricity_future_in_investment_cost_table), - Q(energy_flexibility_mv_batteries_electricity_future_in_investment_cost_table), - Q(other_burner_coal_future_in_investment_cost_table), - Q(other_burner_crude_oil_future_in_investment_cost_table), - Q(other_burner_network_gas_future_in_investment_cost_table), - Q(other_burner_wood_pellets_future_in_investment_cost_table), - Q(industry_chemicals_fertilizers_captured_combustion_co2_future_in_investment_cost_table), - Q(industry_chemicals_fertilizers_captured_processes_co2_future_in_investment_cost_table), - Q(industry_other_food_captured_co2_future_in_investment_cost_table), - Q(industry_other_paper_captured_co2_future_in_investment_cost_table), - Q(industry_steel_blastfurnace_bof_captured_co2_future_in_investment_cost_table), - Q(industry_steel_scrap_hbi_eaf_captured_co2_future_in_investment_cost_table), - Q(molecules_direct_air_capture_co2_future_in_investment_cost_table), - Q(molecules_offshore_sequestration_co2_future_in_investment_cost_table), - Q(energy_production_synthetic_methanol_future_in_investment_cost_table), - Q(energy_production_synthetic_kerosene_future_in_investment_cost_table) - ) -- unit = euro diff --git a/gqueries/output_elements/output_series/investment_table/total_present_in_investment_cost_table.gql b/gqueries/output_elements/output_series/investment_table/total_present_in_investment_cost_table.gql deleted file mode 100644 index aaac3ae5f7..0000000000 --- a/gqueries/output_elements/output_series/investment_table/total_present_in_investment_cost_table.gql +++ /dev/null @@ -1,4 +0,0 @@ -# investment costs of %s IF newly built (green field approach) - -- query = SUM(Q(households_space_heater_coal_present_in_investment_cost_table),Q(households_space_heater_combined_network_gas_present_in_investment_cost_table),Q(households_space_heater_combined_hydrogen_present_in_investment_cost_table),Q(households_space_heater_crude_oil_present_in_investment_cost_table),Q(households_space_heater_electricity_present_in_investment_cost_table),Q(households_space_heater_heatpump_air_water_electricity_present_in_investment_cost_table),Q(households_space_heater_heatpump_ground_water_electricity_present_in_investment_cost_table),Q(households_space_heater_hybrid_heatpump_air_water_electricity_present_in_investment_cost_table),Q(households_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_present_in_investment_cost_table),Q(households_space_heater_network_gas_present_in_investment_cost_table),Q(households_space_heater_wood_pellets_present_in_investment_cost_table),Q(households_water_heater_resistive_electricity_present_in_investment_cost_table),Q(households_water_heater_solar_thermal_present_in_investment_cost_table),Q(households_solar_pv_solar_radiation_present_in_investment_cost_table),Q(households_cooling_airconditioning_electricity_present_in_investment_cost_table),Q(buildings_space_heater_coal_present_in_investment_cost_table),Q(buildings_space_heater_heatpump_air_water_network_gas_present_in_investment_cost_table),Q(buildings_space_heater_heatpump_air_water_electricity_present_in_investment_cost_table),Q(buildings_space_heater_collective_heatpump_water_water_ts_electricity_present_in_investment_cost_table),Q(buildings_space_heater_crude_oil_present_in_investment_cost_table),Q(buildings_space_heater_electricity_present_in_investment_cost_table),Q(buildings_space_heater_network_gas_present_in_investment_cost_table),Q(buildings_space_heater_combined_hydrogen_present_in_investment_cost_table),Q(buildings_space_heater_wood_pellets_present_in_investment_cost_table),Q(buildings_space_heater_solar_thermal_present_in_investment_cost_table),Q(buildings_solar_pv_solar_radiation_present_in_investment_cost_table),Q(buildings_cooling_airconditioning_electricity_present_in_investment_cost_table),Q(agriculture_burner_crude_oil_present_in_investment_cost_table),Q(agriculture_burner_network_gas_present_in_investment_cost_table),Q(agriculture_burner_wood_pellets_present_in_investment_cost_table),Q(agriculture_geothermal_present_in_investment_cost_table),Q(agriculture_heatpump_water_water_ts_electricity_present_in_investment_cost_table),Q(agriculture_burner_hydrogen_present_in_investment_cost_table),Q(industry_aluminium_burner_network_gas_present_in_investment_cost_table),Q(industry_chemicals_fertilizers_burner_coal_present_in_investment_cost_table),Q(industry_chemicals_fertilizers_burner_crude_oil_present_in_investment_cost_table),Q(industry_chemicals_fertilizers_burner_hydrogen_present_in_investment_cost_table),Q(industry_chemicals_fertilizers_burner_network_gas_present_in_investment_cost_table),Q(industry_chemicals_fertilizers_burner_wood_pellets_present_in_investment_cost_table),Q(industry_chemicals_other_burner_coal_present_in_investment_cost_table),Q(industry_chemicals_other_burner_crude_oil_present_in_investment_cost_table),Q(industry_chemicals_other_burner_hydrogen_present_in_investment_cost_table),Q(industry_chemicals_other_burner_network_gas_present_in_investment_cost_table),Q(industry_chemicals_other_burner_wood_pellets_present_in_investment_cost_table),Q(industry_chemicals_other_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table),Q(industry_chemicals_other_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table),Q(industry_chemicals_other_heater_electricity_present_in_investment_cost_table),Q(industry_chemicals_other_heatpump_water_water_electricity_present_in_investment_cost_table),Q(industry_chemicals_other_steam_recompression_electricity_present_in_investment_cost_table),Q(industry_chemicals_refineries_burner_coal_present_in_investment_cost_table),Q(industry_chemicals_refineries_burner_crude_oil_present_in_investment_cost_table),Q(industry_chemicals_refineries_burner_hydrogen_present_in_investment_cost_table),Q(industry_chemicals_refineries_burner_network_gas_present_in_investment_cost_table),Q(industry_chemicals_refineries_burner_wood_pellets_present_in_investment_cost_table),Q(industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table),Q(industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table),Q(industry_chp_combined_cycle_gas_power_fuelmix_present_in_investment_cost_table),Q(industry_chp_engine_gas_power_fuelmix_present_in_investment_cost_table),Q(industry_chp_turbine_gas_power_fuelmix_present_in_investment_cost_table),Q(industry_chp_ultra_supercritical_coal_present_in_investment_cost_table),Q(industry_chp_wood_pellets_present_in_investment_cost_table),Q(industry_heat_backup_burner_network_gas_present_in_investment_cost_table),Q(industry_heat_burner_coal_present_in_investment_cost_table),Q(industry_heat_burner_crude_oil_present_in_investment_cost_table),Q(industry_heat_burner_lignite_present_in_investment_cost_table),Q(industry_heat_well_geothermal_present_in_investment_cost_table),Q(industry_other_food_burner_coal_present_in_investment_cost_table),Q(industry_other_food_burner_crude_oil_present_in_investment_cost_table),Q(industry_other_food_burner_hydrogen_present_in_investment_cost_table),Q(industry_other_food_burner_network_gas_present_in_investment_cost_table),Q(industry_other_food_burner_wood_pellets_present_in_investment_cost_table),Q(industry_other_food_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table),Q(industry_other_food_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table),Q(industry_other_food_heater_electricity_present_in_investment_cost_table),Q(industry_other_metals_burner_network_gas_present_in_investment_cost_table),Q(industry_other_paper_burner_coal_present_in_investment_cost_table),Q(industry_other_paper_burner_crude_oil_present_in_investment_cost_table),Q(industry_other_paper_burner_hydrogen_present_in_investment_cost_table),Q(industry_other_paper_burner_network_gas_present_in_investment_cost_table),Q(industry_other_paper_burner_wood_pellets_present_in_investment_cost_table),Q(industry_other_paper_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table),Q(industry_other_paper_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table),Q(industry_other_paper_heater_electricity_present_in_investment_cost_table),Q(industry_steel_blastfurnace_burner_coal_gas_present_in_investment_cost_table),Q(industry_steel_electricfurnace_burner_network_gas_present_in_investment_cost_table),Q(energy_chp_local_engine_biogas_present_in_investment_cost_table),Q(energy_chp_local_engine_network_gas_present_in_investment_cost_table),Q(energy_chp_local_wood_pellets_present_in_investment_cost_table),Q(energy_heat_backup_burner_network_gas_present_in_investment_cost_table),Q(energy_heat_burner_coal_present_in_investment_cost_table),Q(energy_heat_burner_crude_oil_present_in_investment_cost_table),Q(energy_heat_burner_hydrogen_present_in_investment_cost_table),Q(energy_heat_burner_network_gas_present_in_investment_cost_table),Q(energy_heat_burner_waste_mix_present_in_investment_cost_table),Q(energy_heat_burner_wood_pellets_present_in_investment_cost_table),Q(energy_heat_heatpump_water_water_electricity_present_in_investment_cost_table),Q(energy_heat_solar_thermal_present_in_investment_cost_table),Q(energy_heat_well_geothermal_present_in_investment_cost_table),Q(energy_power_combined_cycle_coal_present_in_investment_cost_table),Q(energy_power_combined_cycle_ccs_coal_present_in_investment_cost_table),Q(energy_power_supercritical_coal_present_in_investment_cost_table),Q(energy_power_ultra_supercritical_coal_present_in_investment_cost_table),Q(energy_power_ultra_supercritical_ccs_coal_present_in_investment_cost_table),Q(energy_power_ultra_supercritical_cofiring_coal_present_in_investment_cost_table),Q(energy_chp_ultra_supercritical_coal_present_in_investment_cost_table),Q(energy_chp_ultra_supercritical_cofiring_coal_present_in_investment_cost_table),Q(energy_power_combined_cycle_network_gas_present_in_investment_cost_table),Q(energy_power_combined_cycle_ccs_network_gas_present_in_investment_cost_table),Q(energy_power_turbine_network_gas_present_in_investment_cost_table),Q(energy_power_ultra_supercritical_network_gas_present_in_investment_cost_table),Q(energy_chp_combined_cycle_network_gas_present_in_investment_cost_table),Q(energy_power_ultra_supercritical_crude_oil_present_in_investment_cost_table),Q(energy_power_engine_diesel_present_in_investment_cost_table),Q(energy_power_nuclear_gen2_uranium_oxide_present_in_investment_cost_table),Q(energy_power_nuclear_gen3_uranium_oxide_present_in_investment_cost_table),Q(energy_power_supercritical_waste_mix_present_in_investment_cost_table),Q(energy_power_supercritical_ccs_waste_mix_present_in_investment_cost_table),Q(energy_chp_supercritical_waste_mix_present_in_investment_cost_table),Q(energy_chp_supercritical_ccs_waste_mix_present_in_investment_cost_table),Q(energy_power_ultra_supercritical_lignite_present_in_investment_cost_table),Q(energy_power_ultra_supercritical_oxyfuel_ccs_lignite_present_in_investment_cost_table),Q(energy_chp_ultra_supercritical_lignite_present_in_investment_cost_table),Q(energy_power_solar_csp_solar_radiation_present_in_investment_cost_table),Q(energy_power_solar_pv_solar_radiation_present_in_investment_cost_table),Q(energy_power_geothermal_present_in_investment_cost_table),Q(energy_power_hydro_mountain_present_in_investment_cost_table),Q(energy_power_hydro_river_present_in_investment_cost_table),Q(energy_power_turbine_hydrogen_present_in_investment_cost_table),Q(energy_power_combined_cycle_hydrogen_present_in_investment_cost_table),Q(energy_power_wind_turbine_coastal_present_in_investment_cost_table),Q(energy_power_wind_turbine_inland_present_in_investment_cost_table),Q(energy_power_wind_turbine_offshore_present_in_investment_cost_table),Q(energy_biogas_fermentation_wet_biomass_present_in_investment_cost_table),Q(energy_greengas_gasification_wet_biomass_present_in_investment_cost_table),Q(energy_greengas_gasification_dry_biomass_present_in_investment_cost_table),Q(households_flexibility_p2p_electricity_present_in_investment_cost_table),Q(industry_other_paper_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table),Q(industry_other_paper_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table),Q(industry_other_food_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table),Q(industry_other_food_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table),Q(industry_chemicals_refineries_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table),Q(industry_chemicals_refineries_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table),Q(industry_chemicals_other_flexibility_p2h_network_gas_electricity_present_in_investment_cost_table),Q(industry_chemicals_other_flexibility_p2h_hydrogen_electricity_present_in_investment_cost_table),Q(energy_hydrogen_flexibility_p2g_electricity_present_in_investment_cost_table),Q(energy_flexibility_hv_opac_electricity_present_in_investment_cost_table),Q(energy_flexibility_mv_batteries_electricity_present_in_investment_cost_table),Q(other_burner_coal_present_in_investment_cost_table),Q(other_burner_crude_oil_present_in_investment_cost_table),Q(other_burner_network_gas_present_in_investment_cost_table),Q(other_burner_wood_pellets_present_in_investment_cost_table),Q(industry_chemicals_fertilizers_captured_combustion_co2_present_in_investment_cost_table),Q(industry_chemicals_fertilizers_captured_processes_co2_present_in_investment_cost_table),Q(industry_other_food_captured_co2_present_in_investment_cost_table),Q(industry_other_paper_captured_co2_present_in_investment_cost_table),Q(industry_steel_blastfurnace_captured_bof_co2_present_in_investment_cost_table),Q(industry_steel_scrap_hbi_eaf_captured_co2_present_in_investment_cost_table),Q(industry_steel_cyclonefurnace_bof_captured_co2_present_in_investment_cost_table)Q(industry_steel_dri_hydrogen_eaf_captured_co2_present_in_investment_cost_table),Q(industry_steel_dri_network_gas_eaf_captured_co2_present_in_investment_cost_table),Q(molecules_direct_air_capture_co2_present_in_investment_cost_table),Q(molecules_offshore_sequestration_co2_present_in_investment_cost_table),Q(energy_production_synthetic_methanol_present_in_investment_cost_table),Q(energy_production_synthetic_kerosene_present_in_investment_cost_table),) -- unit = euro From a7a17437fd1e4f628631a7562fb4dd30ac9f6741 Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 20:04:17 +0200 Subject: [PATCH 10/13] Correct missing agriculture label in emission queries --- .../emissions_overview_non_energetic_agriculture_co2.gql | 6 +++--- .../emissions_overview_non_energetic_agriculture_ghg.gql | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gqueries/general/emissions/emissions_overview_non_energetic_agriculture_co2.gql b/gqueries/general/emissions/emissions_overview_non_energetic_agriculture_co2.gql index aabfa6978b..8468aa3742 100644 --- a/gqueries/general/emissions/emissions_overview_non_energetic_agriculture_co2.gql +++ b/gqueries/general/emissions/emissions_overview_non_energetic_agriculture_co2.gql @@ -1,7 +1,7 @@ - query = SUM( - Q(emissions_non_energetic_soil_cultivation_co2), - Q(emissions_non_energetic_manure_co2) + Q(emissions_non_energetic_agriculture_soil_cultivation_co2), + Q(emissions_non_energetic_agriculture_manure_co2) ) -- unit = T \ No newline at end of file +- unit = T diff --git a/gqueries/general/emissions/emissions_overview_non_energetic_agriculture_ghg.gql b/gqueries/general/emissions/emissions_overview_non_energetic_agriculture_ghg.gql index 9f91bfab39..202e80704f 100644 --- a/gqueries/general/emissions/emissions_overview_non_energetic_agriculture_ghg.gql +++ b/gqueries/general/emissions/emissions_overview_non_energetic_agriculture_ghg.gql @@ -1,7 +1,7 @@ - query = SUM( - Q(emissions_non_energetic_soil_cultivation_other_ghg), - Q(emissions_non_energetic_manure_other_ghg) + Q(emissions_non_energetic_agriculture_soil_cultivation_other_ghg), + Q(emissions_non_energetic_agriculture_manure_other_ghg) ) -- unit = T \ No newline at end of file +- unit = T From 676f8e0975dcf1dd9b8ea5244c31cca0234a55c8 Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 20:06:41 +0200 Subject: [PATCH 11/13] Remove redundant 'only' label in emissions queries --- .../emissions_overview_energetic_built_environment_co2.gql | 4 ++-- .../emissions/emissions_overview_energetic_transport_co2.gql | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gqueries/general/emissions/emissions_overview_energetic_built_environment_co2.gql b/gqueries/general/emissions/emissions_overview_energetic_built_environment_co2.gql index 268b9f1695..7a81998897 100644 --- a/gqueries/general/emissions/emissions_overview_energetic_built_environment_co2.gql +++ b/gqueries/general/emissions/emissions_overview_energetic_built_environment_co2.gql @@ -1,6 +1,6 @@ - query = SUM( - Q(co2_sheet_buildings_households_total_co2_emissions_only_energetic) + Q(co2_sheet_buildings_households_total_co2_emissions_energetic) ) -- unit = T \ No newline at end of file +- unit = T diff --git a/gqueries/general/emissions/emissions_overview_energetic_transport_co2.gql b/gqueries/general/emissions/emissions_overview_energetic_transport_co2.gql index 468c2587e9..29c6e2c853 100644 --- a/gqueries/general/emissions/emissions_overview_energetic_transport_co2.gql +++ b/gqueries/general/emissions/emissions_overview_energetic_transport_co2.gql @@ -1,6 +1,6 @@ - query = SUM( - Q(co2_sheet_transport_total_co2_emissions_only_energetic) + Q(co2_sheet_transport_total_co2_emissions_energetic) ) -- unit = T \ No newline at end of file +- unit = T From c5d3cec161a40510c17c2bfcffb4e5d0ad642a76 Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Mon, 22 Jun 2026 20:13:46 +0200 Subject: [PATCH 12/13] Remove redundant 'chp' label in emissions query --- .../supply/power/emissions_captured_power_biogenic.gql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gqueries/general/emissions/supply/power/emissions_captured_power_biogenic.gql b/gqueries/general/emissions/supply/power/emissions_captured_power_biogenic.gql index 0403df74ce..40b2db695e 100644 --- a/gqueries/general/emissions/supply/power/emissions_captured_power_biogenic.gql +++ b/gqueries/general/emissions/supply/power/emissions_captured_power_biogenic.gql @@ -2,6 +2,6 @@ SUM( Q(emissions_captured_energy_chp_ht_wood_pellets) Q(emissions_captured_energy_chp_mt_wood_pellets), - Q(emissions_captured_energy_chp_power_wood_pellets) + Q(emissions_captured_energy_power_wood_pellets) ) -- unit = tonne \ No newline at end of file +- unit = tonne From 1721a8e7ce987f12ad477633988aa54aeaa00bb6 Mon Sep 17 00:00:00 2001 From: Mathijs Bijkerk Date: Tue, 23 Jun 2026 08:36:05 +0200 Subject: [PATCH 13/13] Remove redundant query This query is no longer used anywhere and contained references to missing queries --- .../emissions_overview_energetic_industry_ghg.gql | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 gqueries/general/emissions/emissions_overview_energetic_industry_ghg.gql diff --git a/gqueries/general/emissions/emissions_overview_energetic_industry_ghg.gql b/gqueries/general/emissions/emissions_overview_energetic_industry_ghg.gql deleted file mode 100644 index 99eec82c1f..0000000000 --- a/gqueries/general/emissions/emissions_overview_energetic_industry_ghg.gql +++ /dev/null @@ -1,7 +0,0 @@ -- query = - SUM( - Q(emissions_energetic_industry_energy_other_ghg), - Q(emissions_energetic_other_industry_other_ghg) - ) - -- unit = T \ No newline at end of file